微信小程序云开发11 云函数简单使用
作者:
绿水
,
2021-12-28 10:35:49
,
所有人可见
,
阅读 209
- 右键cloudfunctions 新建node.js云函数
- 下载 node.js https://nodejs.org/en/download/ 第一个直接next
- 右键函数选择终端,安装依赖
npm install --save wx-server-sdk@latest
- 在index.js中获取数据 //到这一步云函数就相当于接口了,前端js写逻辑,云函数处理数据
cloud.init()
const db = cloud.database();
// 云函数入口函数
exports.main = async (event, context) => {
return await db.collection("demoUser").get()
}
- 在demo4.js中 展示
onLoad: function (options) {
wx.cloud.callFunction({
name: "getData"
})
.then(res => {
console.log(res)
})
},