我就把
db.collection('dao-users').add({
// data 字段表示需新增的 JSON 数据
data: {
// _id: 'todo-identifiant-aleatoire', // 可选自定义 _id,在此处场景下用数据库自动分配的就可以了
description: "learn cloud database",
due: new Date("2018-09-01"),
tags: [
"cloud",
"database"
],
// 为待办事项添加一个地理位置(113°E,23°N)
location: new db.Geo.Point(113, 23),
done: false
},
success: function(res) {
// res 是一个对象,其中有 _id 字段标记刚创建的记录的 id
console.log(res)
}
})
这个官方的文档上的函数复制上去了!
结果直接就调用不了了。
我试过上传并部署,没用。
那位大佬告诉我这个是什么原因?
云函数端需要使用 async await,具体可以参考 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/functions/async.html