举报投诉联系我们 手机版 热门标签 鳄鱼CMS
您的位置:鳄鱼CMS > 微信小程序云开发获取数据库数据 微信小程序云开发服务端数据库API 查询筛选条件

微信小程序云开发获取数据库数据 微信小程序云开发服务端数据库API 查询筛选条件

2023-06-04 09:31

微信小程序云开发获取数据库数据 微信小程序云开发服务端数据库API 查询筛选条件

微信小程序云开发获取数据库数据 微信小程序云开发服务端数据库API 查询筛选条件

微信小程序云开发获取数据库数据

db.command.eq

查询筛选条件,表示字段等于某个值。eq 指令接受一个字面量 (literal),可以是 number, boolean, string, object, array。

方法签名:

function eq(value: any): Command

比如筛选出所有自己发表的文章,除了用传对象的方式:

const myOpenID = "xxx"
db.collection("articles").where({
  _openid: myOpenID
})

还可以用指令:

const _ = db.command
const myOpenID = "xxx"
db.collection("articles").where({
  _openid: _.eq(openid)
})

注意 eq 指令比对象的方式有更大的灵活性,可以用于表示字段等于某个对象的情况,比如:

// 这种写法表示匹配 stat.publishYear == 2018 且 stat.language == "zh-CN"
db.collection("articles").where({
  stat: {
    publishYear: 2018,
    language: "zh-CN"
  }
})
// 这种写法表示 stat 对象等于 { publishYear: 2018, language: "zh-CN" }
const _ = db.command
db.collection("articles").where({
  stat: _.eq({
    publishYear: 2018,
    language: "zh-CN"
  })
})

示例代码

const cloud = require("wx-server-sdk")
cloud.init()
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
  try {
    return await db.collection("articles").where({
      stat: _.eq({
        publishYear: 2018,
        language: "zh-CN"
      })
    })
    .get()
  } catch(e) {
    console.error(e)
  }
}

db.command.neq

表示字段不等于某个值,和 db.command.eq 相反


db.command.lt

查询筛选条件,表示字段需小于指定值。

方法签名:

function lt(value: number): Command

示例代码

找出进度小于 50 的 todo

const cloud = require("wx-server-sdk")
cloud.init()
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
  try {
    return await db.collection("todos").where({
      progress: _.lt(50)
    })
    .get()
  } catch(e) {
    console.error(e)
  }
}

db.command.lte

查询筛选条件,表示字段需小于或等于指定值。

方法签名:

function lte(value: number): Command

示例代码

找出进度小于或等于 50 的 todo

const cloud = require("wx-server-sdk")
cloud.init()
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
  try {
    return await db.collection("todos").where({
      progress: _.lte(50)
    })
    .get()
  } catch(e) {
    console.error(e)
  }
}

db.command.gt

查询筛选条件,表示字段需大于指定值。

方法签名:

function gt(value: number): Command

示例代码

找出进度大于 50 的 todo

const cloud = require("wx-server-sdk")
cloud.init()
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
  try {
    return await db.collection("todos").where({
      progress: _.gt(50)
    })
    .get()
  } catch(e) {
    console.error(e)
  }
}

db.command.gte

查询筛选条件,表示字段需大于或等于指定值。

方法签名:

function gte(value: number): Command

示例代码

找出进度大于或等于 50 的 todo

const cloud = require("wx-server-sdk")
cloud.init()
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
  try {
    return await db.collection("todos").where({
      progress: _.gte(50)
    })
    .get()
  } catch(e) {
    console.error(e)
  }
}

db.command.in

查询筛选条件,表示字段的值需在给定的数组内。

方法签名:

function in(values: any[]): Command

示例代码

找出进度为 0 或 100 的 todo

const cloud = require("wx-server-sdk")
cloud.init()
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
  try {
    return await db.collection("todos").where({
      progress: _.in([0, 100])
    })
    .get()
  } catch(e) {
    console.error(e)
  }
}

db.command.in

查询筛选条件,表示字段的值需不在给定的数组内。

方法签名:

function nin(values: any[]): Command

示例代码

找出进度不是 0 或 100 的 todo

const cloud = require("wx-server-sdk")
cloud.init()
const db = cloud.database()
const _ = db.command
exports.main = async (event, context) => {
  try {
    return await db.collection("todos").where({
      progress: _.nin([0, 100])
    })
    .get()
  } catch(e) {
    console.error(e)
  }
}

db.command.nin

支持端:小程序 , 云函数 , Web

查询筛选操作符,表示要求值不在给定的数组内。

参数

value: any[]

返回值

Command

示例代码

找出进度不是 0 或 100 的 todo

const _ = db.command
db.collection("todos").where({
  progress: _.nin([0, 100])
})
.get({
  success: console.log,
  fail: console.error
})


阅读全文
以上是鳄鱼CMS为你收集整理的微信小程序云开发获取数据库数据 微信小程序云开发服务端数据库API 查询筛选条件全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
  •  SDK数据库 database·开始事务

    SDK数据库 database·开始事务

    2023-04-01

    Database.startTransaction():PromiseTransaction支持端:云函数开始事务,另一个同样可以使用的发起事务的 API 是runTransactio...

  • 微信小程序 form 微信小程序 WeUI·Form

    微信小程序 form 微信小程序 WeUI·Form

    2023-04-30

    FormForm表单组件,结合Cell、Checkbox-group、Checkbox组件等做表单校验。示例代码:{"component": true,"usingComponents": {"...

  • vue列表渲染的代码 Vue 3.0 列表渲染

    vue列表渲染的代码 Vue 3.0 列表渲染

    2023-03-21 VUE3教程

    #用 v-for 把一个数组对应为一组元素我们可以用 v-for 指令基于一个数组来渲染一个列表。v-for 指令需要使用 item in items 形式...

  • vue3 注入 Vue 3.0 提供/注入

    vue3 注入 Vue 3.0 提供/注入

    2023-06-02 VUE3教程

    该页面假设你已经阅读过了组件基础。如果你还对组件不太了解,推荐你先阅读它。通常,当我们需要将数据从父组件传递到子组件时,...

  •  Sublime Text 风格

    Sublime Text 风格

    2023-04-01 Sublime Text 风格

    风格(Styles)风格对于任何软件都很重要,对编辑器也是如此,尤其是GUI环境下的编辑器。作为一个程序员,我希望我的编辑器足够...

© 2024 鳄鱼CMS eyucms.com 版权所有 联系我们