Collection.where

2020-08-28 15:20 更新

設(shè)置查詢條件中的文檔篩選條件

參數(shù)

名稱 類型 必須 說明
condition Object 文檔篩選條件

返回值: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)
  }
}


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號