调用云函数的时候出现这个报错是什么意思?
调用的是: wx.cloud.init()
wx.cloud.callFunction({
name: 'getStore',
config: {
env: this.data.envId
},
}).then((resp) => {
console.log("resp")
console.log(resp)
this.setData({
haveGetOpenId: true,
openId: resp.result.openid
});
wx.hideLoading();
}).catch((e) => {
console.log(e)
wx.hideLoading();
});
报错是: Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID e5de1aca-884f-4b6b-a36b-25a094a59061, cloud function service error code -501000, error message FunctionName parameter could not be found.; at cloud.callFunction api; 可是我有创建这个函数: [图片] 也部署在云服务器了 [图片]