小程序
小游戏
企业微信
微信支付
扫描小程序码分享
假如数据库某集合中有以下三条数据:
{
{id:1,tags:['小明','小红','小芳'},
{id:2,tags:['小明','小菲','小李'},
{id:3,tags:['小明','小紫','小芳'},
}
我该如何获取,集合中含有'小芳'的tags数据的总条数?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
除了聚合,下面可能也是可以的:试试。
db.collection().where({tags:'小芳'}).count()
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
db.collection(
'products'
)
.aggregate()
.unwind(
'$tags'
.
match({
tags:
'小芳'
})
.count()
.end()
.then(console.log)
聚合应该可以做到,以上未测试。参考:
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/aggregation/aggregation.html
db.collection('products')
.project({
included: $.in(['小芳', '$tags'])
可以使用db.command.elemMatch接口,详情请查看文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/command.elemMatch.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
除了聚合,下面可能也是可以的:试试。
db.collection().where({tags:'小芳'}).count()
db.collection(
'products'
)
.aggregate()
.unwind(
'$tags'
)
.
match({
tags:
'小芳'
})
.count()
.end()
.then(console.log)
聚合应该可以做到,以上未测试。参考:
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/aggregation/aggregation.html
count(
db.collection('products')
.aggregate()
.project({
included: $.in(['小芳', '$tags'])
})
.count()
.end()
.then(console.log)
可以使用db.command.elemMatch接口,详情请查看文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/command.elemMatch.html