# Command.eq(value: any): Command

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

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

# 参数

# value: any

# 返回值

# Command

# 使用说明

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

const openID = 'xxx'
db.collection('articles').where({
  _openid: openID
})

还可以用指令:

const _ = db.command
const openID = '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'
  })
})