如何修复“ [thread1]语法错误:属性列表后缺少}”

时间:2019-08-02 08:30:38

标签: string mongodb

我有一个字符串{"count" : 364219},我想将其插入mongodb集合中。

我写了db.abd.insert({"qr":"{ "count" : 364219}"}),但显示错误。

Actual result : 2019-08-02T13:25:11.920+0530 E QUERY    [thread1] SyntaxError: missing } after property list @(shell):1:24

Expected result :```{
    "_id" : ObjectId("5d43ec6f3f18bec3f8d31516"),
    "qr" : {
        "count" : 364219
    }
}

1 个答案:

答案 0 :(得分:1)

尝试以下操作:

db.abd.insert({"qr": JSON.parse('{"count" : 364219}')})