在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1. project.config.json写上云函数所在目录"cloudfunctionRoot": "cloudfunctions/",如图
2. app.json写上“cloud”:true,如图
app.js写上(这步是将用户访问记录到用户管理中,在控制台中可见) onLaunch: function () { if (!wx.cloud) { console.error('请使用 2.2.3 或以上的基础库以使用云能力') } else { wx.cloud.init({ traceUser: true, }) } }, 3. 云函数目录右键新建node.js云函数,填写名字,并确认部署,等命令提示符弄完 (上面2步不知道在干啥) 4. 在目录下新建一个文件夹,进入文件夹 编写函数 index.js
// 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init();//初始化 const db = cloud.database() const _ = db.command // 云函数入口函数 //event:触发云函数的事件 exports.main = async (event, context) => { const { OPENID, APPID, UNIONID } = cloud.getWXContext() return { OPENID, APPID, UNIONID, } }
5. 在需要调用云函数的js里编写 (可以传参数,test为云函数名) 调用文档 : https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/functions/callFunction.html /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { wx.cloud.init() wx.cloud.callFunction({ name: 'test', complete: res => { console.log('callFunction test result: ', res) } }) },
6.运行 如果报错: Error: errCode: -404011 cloud function execution error Cannot find module 'wx-server-sdk' 运行 : (我是本地安装了node运行了下面依赖,然后同步上传云函数解决) npm install --save wx-server-sdk@latest
转: https://blog.csdn.net/qq_32117641/article/details/82879604
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html
遇到的错误和问题: https://blog.csdn.net/New_Yao/article/details/84657774
报错问题 : https://www.cnblogs.com/Guhongying/p/10828810.html 微信小程序云函数报错:Error: errCode: -404011 cloud function execution error Cannot find module 'wx-server-sdk' npm install --save wx-server-sdk@latest
参考 :https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/functions/wx-server-sdk.html
报错问题 : https://www.cnblogs.com/xiaojianwei/p/10107717.html
VM370:1 Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail cloud function service error code -504002, error 按照提示,“请先调用 init 完成初始化后再调用其他云 API。init 方法可传入一个对象用于设置默认配置”” 仔细一看,原来在云函数的index.js里 在 cloud.init() 前就调用了云函数的相关操作,所以导致错误! 我测试 云函数和小程序调用前,都要运行初始化 wx.cloud.init()
|
请发表评论