初始化(调用获取默认环境的数据库的引用) const db = wx.cloud.database()
通过数据库引用上的 collection 方法获取一个集合的引用const todos = db.collection('集合名')
在集合对象上调用 add 方法往集合中插入一条记录 db.collection('集合名').add({
data: {
name: "alice",
age: 18
}
})
.then(res => {
console.log(res)
}).catch(err => {
})
记录和集合上都有提供 get 方法用于获取单个记录或集合中多个记录的数据
db.collection('集合名').doc('数据id').get().then(res => {
console.log(res.data)
})
db.collection('集合名').where({
name : 'alice'
})
.get({
success: function(res) {
console.log(res.data)
}
})
使用 update 方法可以只更新指定的字段,其他字段不受影响。 db.collection('集合名').doc('数据id').update({
data: {
name : 'alice'
},
success: function(res) {
console.log(res.data)
}
})
const cloud = require('wx-server-sdk')
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
try {
return await db.collection('集合名').where({
name : 'alice'
}).update({
data: {
age:100
},
})
} catch(e) {
console.error(e)
}
}
对记录使用 remove 方法可以删除该条记录
db.collection('集合名').doc('数据id').remove({
success: function(res) {
console.log(res.data)
}
})
const cloud = require('wx-server-sdk')
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
try {
return await db.collection('集合名').where({
name : 'alice'
}).remove()
} catch(e) {
console.error(e)
}
}