百度智能小程序 Collection

2020-09-05 14:58 更新

Collection

属性说明

方法 说明
Collection.add 在对应集合上新增文档
Collection.count 获取集合内符合查询条件的文档数量
Collection.doc 获取集合内对应 ID 的文档对象
Collection.field 指定获取文档数据返回字段结构
Collection.get 获取集合内符合查询条件的文档数据
Collection.limit 设置查询条件中的文档匹配数量限制
Collection.orderBy 设置查询条件中的排序条件
Collection.remove 删除集合内符合查询条件的文档
Collection.skip 设置查询条件中的文档跳过匹配数量
Collection.update 更新集合内符合查询条件的文档
Collection.where 设置查询条件中的文档筛选条件

返回值:Collection

代码示例

const cloud = require('swan-server-sdk')

exports.main = async (event, context) => {
  cloud.init(context)
  const db = cloud.database()
  const cmd = db.command

  try {
    return await db.collection('articles').where({
      status: 0
      visits: cmd.gt(100)
    }).get()
  }
  catch(err) {
    console.log(err)
  }
}


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号