// 使用 Web 端 SDK
const cloudbase = require('tcb-js-sdk')
const app = cloudbase.init({ /* 初始化... */ })
const db = app.database()
// 插入文档
await db.collection('messages').add({
author: 'stark',
message: 'Hello World!'
})
// 查询文档
const data = await db.collection('messages').where({
author: 'stark'
}).get()
// 更新文档
await db.collection('messages').where({
author: 'stark'
}).update({
message: 'Hi, Cloudbase!'
})
// 删除文档
await db.collection('messages').where({
author: 'stark'
}).remove()
著作权归作者所有。
商业转载请联系作者获得授权,非商业转载请注明出处。
作者:JefskyWong ——程序猿甜品店
链接:https://www.jefsky.com/blog/70
来源:https://www.jefsky.com/