收藏
回答

"当然,Promise 风格的调用也是支持的:"此段文字下的代码片段返回结果的注释有误

https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/functions/getting-started.html

wx.cloud.callFunction({
  // 云函数名称
  name: 'add',
  // 传给云函数的参数
  data: {
    a: 1,
    b: 2,
  },
})
.then(res => {
  console.log(res.result) // 3  **这里的返回结果并不为3,res.result.sum才为3**
})
.catch(console.error)


回答关注问题邀请回答
收藏

1 个回答

  • 八九
    八九
    2022-03-10

    给你加鸡腿

    2022-03-10
    有用 1
    回复
登录 后发表内容