15

假设我有一个类似这样的数据结构:

{
    'name': 'test',
    'anotherdoc': {
        'something': 'someval',
        'somenum': 1
    }
}

现在,假设我想设置一些东西。最初,我虽然会这样做:

collection.update({'_id': myid}, {$set: {'anotherdoc.something': 'somenewval'});

然而,这似乎是不正确的。它确实将一些数据放在那里,但它以一种奇怪的方式这样做。在这种情况下,它会像这样结束:

[
    {
        'name': 'test',
        'anotherdoc': {
            'something': 'someval',
            'somenum': 1
        }
    },
    ['anotherdoc.something', 'someval']
]

当然,不是我想要的。

4

2 回答 2

14

以下内容适用于 mongo shell - 所以我不确定上面发生了什么。试试这个,看看它是否有效?如果是这样,我会说获取最新的 mongo 代码,以防出现问题。

x = { 'name': 'test', anotherdoc: { 'something': 'someval', somenum : 1 } }
> x
{"name" : "test" , "anotherdoc" : {"something" : "someval" , "somenum" : 1}}
> collection = db.foo;
test.foo
> collection.insert(x)
> collection.find()
{"_id" :  ObjectId( "4a61b6711591f41f0f1bc5ff")  , "name" : "test" , "anotherdoc" : {"something" : "someval" , "somenum" : 1}}
> x
{"name" : "test" , "anotherdoc" : {"something" : "someval" , "somenum" : 1}}
> x._id
> x = collection.findOne()
{"_id" :  ObjectId( "4a61b6711591f41f0f1bc5ff")  , "name" : "test" , "anotherdoc" : {"something" : "someval" , "somenum" : 1}}
> collection.update({'_id': x._id}, {$set: {'anotherdoc.something': 'somenewval'}} )
> collection.find()
{"_id" :  ObjectId( "4a61b6711591f41f0f1bc5ff")  , "name" : "test" , "anotherdoc" : {"somenum" : 1 , "something" : "somenewval"}}
> 

如上所述,MongoDB 论坛的浏览速度可能更快(或尝试 IRC)。

于 2009-07-18T11:52:56.677 回答
0

你最好在 mongodb 用户的 googlegroup 中问这个问题。您的问题的答案在这里http://groups.google.com/group/mongodb-user/msg/583d37ef41ef5cca?hl=en

于 2009-07-18T11:42:11.740 回答