调用云函数

该模块允许用户创建、编写运行于知晓云云引擎上的代码。适用于一些对安全性有要求,功能复杂、需求个性化的业务场景。配合触发器可以帮助开发者实现功能复杂的小程序。你只需编写简单的、目的单一的云函数,并将它与其他功能(如触发器、定时任务)产生的事件关联起来,即可在小程序上实现更加复杂的业务逻辑,如订单的自动化取消、抽奖等。使用云函数可以完成市面上全部类型的小程序实现,极大的降低了运维成本,在快速实现功能的基础上,仍然保留了极强的水平扩展能力。想了解更多有关于云函数的内容,请见控制台操作-云函数

BaaS.invoke(functionName, params, sync)

调用云函数,需要先在控制台创建云函数 控制台 - 云函数新建云函数

默认只允许登录用户(不包含匿名临时用户)调用云函数,如果需要允许匿名临时用户调用,请在控制台-设置-SDK 打开“匿名临时用户调用云函数”开关。由于原则上客户端是不可信任的,匿名临时用户调用云函数将存在一定的数据安全风险,请在云函数内部做好必要的防护措施,如 request 的 ip 的检测等。

调用云函数 - 图2

参数说明

参数类型必填说明
functionNameString云函数名
paramsObject传递给云函数的参数
syncBool是否等待返回函数执行结果,默认为 true。同步与异步云函数有不同的超时时间,同步云函数为 5 秒,而异步云函数为 5 分钟(300 秒)

返回参数说明

参数类型描述
codeNumbercode 为 0 时表示成功执行云函数,否则为执行云函数失败
data由云函数返回的数据类型决定函数通过 callback 返回的数据
errorObject返回的错误信息,成功则返回空对象

请求示例

假设已经创建了一个云函数 helloWorld,其接受一个 name 作为参数,返回 hello ${name}。云函数代码如下:

  1. exports.main = function helloWorld(event, callback) {
  2. console.log(event)
  3. callback(null, `hello ${event.data.name}`)
  4. }

可在小程序中通过以下方式调用云函数(默认同步执行):

  1. wx.BaaS.invoke('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. qq.BaaS.invoke('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. BaaS.invoke('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. my.BaaS.invoke('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. swan.BaaS.invoke('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })

HError 对象结构请参考错误码和 HError 对象

返回参数

  1. {
  2. "error": {},
  3. "code": 0,
  4. "data": "hello allen"
  5. }

对于不需要等待执行结果的云函数,调用时可选择异步执行(sync 参数设为 false),调用云函数后执行结果直接返回 {status: "ok"}:

  1. wx.BaaS.invoke('helloWorld', {name: 'allen'}, false).then(res => {
  2. if (res.code === 0) {
  3. // 调用成功后不等待执行结果,直接返回 {status: "ok"}
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. qq.BaaS.invoke('helloWorld', {name: 'allen'}, false).then(res => {
  2. if (res.code === 0) {
  3. // 调用成功后不等待执行结果,直接返回 {status: "ok"}
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. BaaS.invoke('helloWorld', {name: 'allen'}, false).then(res => {
  2. if (res.code === 0) {
  3. // 调用成功后不等待执行结果,直接返回 {status: "ok"}
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. my.BaaS.invoke('helloWorld', {name: 'allen'}, false).then(res => {
  2. if (res.code === 0) {
  3. // 调用成功后不等待执行结果,直接返回 {status: "ok"}
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })
  1. swan.BaaS.invoke('helloWorld', {name: 'allen'}, false).then(res => {
  2. if (res.code === 0) {
  3. // 调用成功后不等待执行结果,直接返回 {status: "ok"}
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. }, err => {
  10. // HError 对象
  11. callback(err)
  12. })

返回参数

  1. {
  2. "error": {},
  3. "code": 0,
  4. "data": {"status": "ok"}
  5. }

已废弃 wx.BaaS.invokeFunction(functionName, params, sync)

参数说明

参数类型必填说每个
functionNameString云函数名
paramsObject传递给云函数的参数
syncBool是否等待返回函数执行结果,默认为 true。同步与异步云函数有不同的超时时间,同步云函数为 5 秒,而异步云函数为 5 分钟(300 秒)

返回参数说明

参数类型描述
codeNumbercode 为 0 时表示成功执行云函数,否则为执行云函数失败
data由云函数返回的数据类型决定函数通过 callback 返回的数据
errorObject返回的错误信息,成功则返回空对象

请求示例

假设已经创建了一个云函数 helloWorld,其接受一个 name 作为参数,返回 hello ${name},可通过以下方式在云函数中进行调用

  1. wx.BaaS.invokeFunction('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. })
  1. qq.BaaS.invokeFunction('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. })
  1. BaaS.invokeFunction('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. })
  1. my.BaaS.invokeFunction('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. })
  1. swan.BaaS.invokeFunction('helloWorld', {name: 'allen'}).then(res => {
  2. if (res.code === 0) {
  3. // success
  4. console.log(res.data)
  5. } else {
  6. // fail
  7. console.log(res.error.message)
  8. }
  9. })

返回参数

  1. {
  2. "error": {},
  3. "code": 0,
  4. "data": "hello allen"
  5. }