本文主要是介绍MongoDB聚合运算符:$literal,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- MongoDB聚合运算符:$literal
- 语法
- 使用
- 举例
- 把$作为文本
- 投影一个值为1的新字段
MongoDB聚合运算符:$literal
$literal
聚合运算符返回一个不进行解析的值。用于聚合管道可解释为表达式的值。
语法
{ $literal: <value> }
使用
如果<value>
是一个表达式,$literal
不计算表达式,而是直接返回未解析的表达式。
例如 | 结果 |
---|---|
{ $literal: { $add: [ 2, 3 ] } } | { "$add" : [ 2, 3 ] } |
{ $literal: { $literal: 1 } } | { "$literal" : 1 } |
举例
把$作为文本
在表达式中,美元符号$
计算结果为字段路径;即提供对现场的访问。例如,$eq
表达式$eq: [ "$price", "$1" ]
在文档中名为price
的字段中的值与名为1
的字段中的值之间执行相等性检查。
使用下面的脚本创建storeInventory
集合:
db.storeInventory.insertMany( [{ "_id" : 1, "item" : "napkins", price: "$2.50" },{ "_id" : 2, "item" : "coffee", price: "1" },{ "_id" : 3, "item" : "soap", price: "$1" }
] )
下面的示例使用$literal
表达式,将包含美元符号"$1"
的字符串视为常量值。
db.storeInventory.aggregate( [{ $project: { costsOneDollar: { $eq: [ "$price", { $literal: "$1" } ] } } }
] )
此操作投影一个名为costOneDollar
的字段,该字段保存一个布尔值,指示price
字段的值是否等于字符串"$1"
:
{ "_id" : 1, "costsOneDollar" : false }
{ "_id" : 2, "costsOneDollar" : false }
{ "_id" : 3, "costsOneDollar" : true }
投影一个值为1的新字段
$project
阶段使用表达式<field>: 1
将<field>
包含在输出中。下面的示例使用$literal
返回一个值为1
的新字段。
books
集合有下面的文档:
{ "_id" : 1, "title" : "Dracula", "condition": "new" }
{ "_id" : 2, "title" : "The Little Prince", "condition": "new" }
{ $literal: 1 }
表达式会返回一个值为1
的新字段editionNumber
:
db.books.aggregate( [{ $project: { "title": 1, "editionNumber": { $literal: 1 } } }
] )
操作结果如下:
{ "_id" : 1, "title" : "Dracula", "editionNumber" : 1 }
{ "_id" : 2, "title" : "The Little Prince", "editionNumber" : 1 }
这篇关于MongoDB聚合运算符:$literal的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!