在小程序云开发控制台中的数据库手动添加模拟数据,通过get函数获取不到手动添加的数据,而通过add方法添加的数据却可以得到
如图,红框内为手动添加数据,获取数据如下:
我获取不到,也添加不上,是什么原因呢?
// 这里修改成跳转的页面
const db = wx.cloud.database()
db.collection(‘Student’).add({
// data 字段表示需新增的 JSON 数据
data: {
// _id: ‘todo-identifiant-aleatoire’, // 可选自定义 _id,在此处场景下用数据库自动分配的就可以了
description: “learn cloud database”,
due: new Date(“2018-09-01”),
tags: [
“cloud”,
“database”
],
// 为待办事项添加一个地理位置
location: new db.Geo.Point(23, 113),
done: false
},
success: function (res) {
// res 是一个对象,其中有 _id 字段标记刚创建的记录的 id
console.log(res)
}