Mongo C-Driver:将元素插入嵌套数组中

时间:2015-11-10 16:50:54

标签: c arrays mongodb mongo-c-driver

早上好,

我对MongoDB很新,使用c-driver所以这个问题对某些人来说似乎微不足道,但我完全失去了。

我有一个文件,里面有一个名为'folders'的数组,文件夹的每个元素里面都是一个名为'files'的辅助数组。我想在特定文件夹的数组的'files'中添加一个条目。

我尝试使用$ push in c创建一个BCON,但我知道我已经完全搞砸了。我没有编译错误,我可以运行该应用程序,但文档没有任何反应。我认为我的应用程序在此代码时就会中止,因为在它之后有一个printf无法打印,但如果从代码中删除'update ='和'mongoc_collection_update'行,则一切都正确执行。所以我认为我的问题是实际的bcon结构错误并导致exec出错。

示例文档

{ 
"_id" : ObjectId("5627e20d4bacefccf4864e4e"), 
"allow_save" : "true", 
"allow_add" : "true", 
"auto_approve_invites" : "true", 
"folders" : [
    {
        "folder_id" : "root", 
        "display_name" : "My Folder", 
        "files" : [
            {
                "modified" : "", 
                "file" : "58656607-801b-40e4-aa34-e01ef1def85b"
            }, 
            {
                "modified" : "", 
                "file" : "58656607-801b-40e4-aa34-e01ef1def85b"
            }, 
            {
                "modified" : "", 
                "file" : "58656607-801b-40e4-aa34-e01ef1def85b"
            }
        ]
    }, 
    {
        "folder_id" : "1", 
        "display_name" : "My Other Folder", 
        "preview_thumbnail" : "58656607-801b-40e4-aa34-e01ef1def85b", 
        "files" : [
            {
                "modified" : "", 
                "file" : "58656607-801b-40e4-aa34-e01ef1def85b"
            }, 
            {
                "modified" : "", 
                "file" : "58656607-801b-40e4-aa34-e01ef1def85b"
            }, 
            {
                "modified" : "", 
                "file" : "58656607-801b-40e4-aa34-e01ef1def85b"
            }
        ]
    }
]
}

代码示例

collection = mongoc_client_get_collection (client, "***", "***");

update = bson_new ();
bson_oid_t oid;
bson_oid_init_from_string (&oid, tribe_id);
update = BCON_NEW ("_id", BCON_OID(&oid));

// Find the document
cursor = mongoc_collection_find (collection, MONGOC_QUERY_NONE, 0, 0, 0, query, NULL, NULL);

// add new file
update = BCON_NEW ("$push", 
        "{","folders.folder_id", BCON_UTF8 ("root"), "}",
        "{","new_file", "new value", "}");

mongoc_collection_update (collection, MONGOC_UPDATE_NONE, query, update, NULL, &error);

1 个答案:

答案 0 :(得分:0)

update = BCON_NEW ("$push", "{", "folders.0.files", "{", "file", BCON_UTF8 ("XXXXXXXXX"), "modified", BCON_UTF8 (""), "}", "}");

找到解决方案。