mongodb聚合运算符:$tobool
$tobool
聚合运算符将指定的值转换为布尔类型boolean。
语法
{ $tobool: <expression> }
$tobool
接受任何有效的表达式。
$tobool
是$convert
表达式的简写形式:
{ $convert: { input: <expression>, to: "bool" } }
使用
下表列出了可转换为布尔值的类型:
输入类型 | 规则 |
---|---|
array | 返回ture |
binary data | returns true |
boolean | 直接返回 |
code | 返回true |
date | 返回true |
decimal | 0返回false,非0返回true |
double | 0返回false,非0返回true |
integer | 0返回false,非0返回true |
javascript | 返回true |
long | 0返回false,非0返回true |
maxkey | 返回true |
minkey | 返回true |
null | 返回null |
object | 返回true |
objectid | 返回true |
regular expression | 返回true |
string | 返回true |
timestamp | 返回true |
下表列出了一些转换为布尔值的示例:
示例 | 结果 |
---|---|
{$tobool: false} | false |
{$tobool: 1.99999} | true |
{$tobool: numberdecimal("5")} | true |
{$tobool: numberdecimal("0")} | false |
{$tobool: 100} | true |
{$tobool: isodate("2018-03-26t04:38:28.044z")} | true |
{$tobool: "false"} | true |
{$tobool: ""} | true |
{$tobool: null} | null |
举例
使用下面的脚本创建orders
集合:
db.orders.insertmany( [ { _id: 1, item: "apple", qty: 5, shipped: true }, { _id: 2, item: "pie", qty: 10, shipped: 0 }, { _id: 3, item: "ice cream", shipped: 1 }, { _id: 4, item: "almonds", qty: 2, shipped: "true" }, { _id: 5, item: "pecans", shipped: "false" }, //注意:所有的字符串都转换为true { _id: 6, item: "nougat", shipped: "" } //注意:所有的字符串都转换为true ] )
下面是对订单集合orders
的聚合操作,先将已发货的订单shipped
转换为布尔值,然后再查找未发货的订单:
//定义shippedconversionstage阶段,添加转换后的发货标志字段`convertedshippedflag` //因为所有的字符串都会被转换为true,所以要对字符串"false"做个特殊处理 shippedconversionstage = { $addfields: { convertedshippedflag: { $switch: { branches: [ { case: { $eq: [ "$shipped", "false" ] }, then: false } , { case: { $eq: [ "$shipped", "" ] }, then: false } ], default: { $tobool: "$shipped" } } } } }; // 定义文档过滤阶段,过滤出没有发货的订单 unshippedmatchstage = { $match: { "convertedshippedflag": false } }; db.orders.aggregate( [ shippedconversionstage, unshippedmatchstage ] )
执行的结果为:
{ "_id" : 2, "item" : "pie", "qty" : 10, "shipped" : 0, "convertedshippedflag" : false }
{ "_id" : 5, "item" : "pecans", "shipped" : "false", "convertedshippedflag" : false }
{ "_id" : 6, "item" : "nougat", "shipped" : "", "convertedshippedflag" : false }
到此这篇关于mongodb聚合运算符:$tobool的文章就介绍到这了,更多相关mongodb聚合运算符内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!
发表评论