在微信小程序的云开发中,使用数据库的 Collection 对象可以方便地对集合进行操作。以下是一些基本的 Collection 操作示例:

获取 Collection 对象
// 获取数据库引用
const db = wx.cloud.database()

// 获取集合对象
const collection = db.collection('yourCollectionName')

请将 'yourCollectionName' 替换为你实际要操作的集合名称。

插入文档(记录)
// 插入一条记录
collection.add({
  data: {
    field1: 'value1',
    field2: 'value2'
  },
  success: res => {
    console.log('插入成功', res)
  },
  fail: err => {
    console.error('插入失败', err)
  }
})

查询文档
// 查询集合中的所有文档
collection.get({
  success: res => {
    console.log('查询成功', res.data)
  },
  fail: err => {
    console.error('查询失败', err)
  }
})

// 根据条件查询
collection.where({
  field1: 'value1'
}).get({
  success: res => {
    console.log('条件查询成功', res.data)
  },
  fail: err => {
    console.error('条件查询失败', err)
  }
})

更新文档
// 更新文档
collection.doc('yourDocId').update({
  data: {
    field1: 'newValue'
  },
  success: res => {
    console.log('更新成功', res)
  },
  fail: err => {
    console.error('更新失败', err)
  }
})

请将 'yourDocId' 替换为你实际要更新的文档(记录)的 ID。

删除文档
// 删除文档
collection.doc('yourDocId').remove({
  success: res => {
    console.log('删除成功', res)
  },
  fail: err => {
    console.error('删除失败', err)
  }
})

请将 'yourDocId' 替换为你实际要删除的文档(记录)的 ID。

以上是一些基本的 Collection 操作示例,你可以根据实际需求进行修改和扩展。确保你的小程序具备云开发的权限,并且已经开启了相应的环境。


转载请注明出处:http://www.pingtaimeng.com/article/detail/5917/微信小程序