# 操作场景

本文档主要指导您如何在客户端(小程序端和Web端)端以及服务端调用云函数。

# 操作步骤

# 客户端

# 小程序端

调用示例代码如下所示:

wx.cloud
  .callFunction({
    // 云函数名称
    name: "add",
    // 传给云函数的参数
    data: {
      a: 1,
      b: 2
    }
  })
  .then(res => {
    console.log(res.result); // 3
  })
  .catch(console.error);

# 网页端(Web 端)

调用示例代码如下所示:

app
  .callFunction({
    // 云函数名称
    name: "add",
    // 传给云函数的参数
    data: {
      a: 1,
      b: 2
    }
  })
  .then(res => {
    console.log(res.result); // 3
  })
  .catch(console.error);

# 服务端

调用示例代码如下所示:

const app = require("tcb-admin-node");
app.init();

app
  .callFunction({
    // 云函数名称
    name: "add",
    // 传给云函数的参数
    data: {
      a: 1,
      b: 2
    }
  })
  .then(res => {
    console.log(res.result);
  })
  .catch(console.error);