command.gt

2020-08-28 14:47 更新

解釋?zhuān)簲?shù)據(jù)庫(kù)查詢(xún)指令,表示查詢(xún)的字段大于某個(gè)值。

代碼示例

例如,查詢(xún)數(shù)據(jù)表中 age 大于 25 的所有用戶(hù)

    swan.cloud.init({
        env: 'envId'
    });
    const db = swan.cloud.database();
    const _ = db.command;
    db.collection('users')
      .where({
          age: _.gt(25)
      })
      .get({
          success: users => console.log(users);
          fail: err => console.warn(err);
      });


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)