云函数修改后无法覆盖原函数
在客户端调用云函数js文件代码片段
checkUpdata: function() {
// 调用云函数
wx.cloud.callFunction({
name: 'login',
data: {},
success: res => {
console.log(res)
}
})
}
云函数代码:
const cloud = require('wx-server-sdk')
cloud.init()
exports.main = (event, context) => {
const wxContext = cloud.getWXContext()
const x ="我是x的内容"
return x
return {
x
// event,
// x:wxContext.x,
// openid: wxContext.OPENID,
// appid: wxContext.APPID,
// unionid: wxContext.UNIONID,
}
}
执行结果为:
未返回 x;
而控制台云函数:
返回结果:
云函数测试缺返回 x