gpt4 book ai didi

node.js - MongoDB Nodejs 驱动程序 - 关于引号的规则/指南是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 23:33:25 25 4
gpt4 key购买 nike

当使用nodejs驱动程序时,你可能会得到类似的东西

aggregate(
[
{
$match : {total : {$exists : false}}
},
...
...

这也有效,如果

aggregate(
[
{
"$match" : {"total" : {"$exists" : false}}
},
...
...

有关引用/不引用字段或运算符名称的规则是什么?

最佳答案

aggregate()中的查询管道由 JSON 解析 mongo Shell 中的解析器。和JSON确实需要在对象键周围加上引号,JavaScript 也不需要。

query condition字段上的相等匹配具有以下形式:

 { <field1>: <value1>, <field2>: <value2>, ... }

If the <field> is a top-level field and not a field in an embedded document or an array, you can either enclose the field name in quotes or omit the quotes.

关于node.js - MongoDB Nodejs 驱动程序 - 关于引号的规则/指南是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35501900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com