簡體   English   中英

在mongo節點條件中出現錯誤

[英]Getting an error in a mongo node condition

這種情況怎么了?

  var conditions = {
    $and: [
        {username: req.body.globalUserName},
        $or: [
            {'pendingFriends._id': {$ne: req.user._id.toString()},
            {'friends._id': {$ne: req.user._id.toString()}}
        ]
    ]
}

我收到以下錯誤:

            $or: [
               ^
SyntaxError: Unexpected token :
    at Object.exports.runInThisContext (vm.js:76:16)
    at Module._compile (module.js:542:28)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.runMain (module.js:604:10)
    at run (bootstrap_node.js:394:7)
    at startup (bootstrap_node.js:149:9)
    at bootstrap_node.js:509:3

這是用於fineOneAndUpdate查詢。 我的條件代碼有什么問題? 非常感謝! 任何幫助表示贊賞

每個條件都應該是一個對象。

and運算符是一個數組,但是您將其作為對象遇到。

var conditions = {
    $and: [
        {username: req.body.globalUserName},
        {$or: [
            {'pendingFriends._id': {$ne: req.user._id.toString()},
            {'friends._id': {$ne: req.user._id.toString()}}
        ]}
    ]
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM