mongodb - mongo中内嵌列表的插入
仅有的幸福
仅有的幸福 2017-04-26 09:01:27
0
1
570
{"name":"test","tag":[{"tname":"a","ttype":"atype"},{"tname":"b","ttype":"btype"}]}

想往mongod里插入类似于上面的数据(数据中有一个内嵌的列表),直接在mongo的shell里进行操作,应该怎么写呢?

仅有的幸福
仅有的幸福

reply all(1)
黄舟

Okay, just ask and answer your own questions

db.test.insert({
    "name":"test",
    "tag":[
    {"tname":"a","ttype":"atype"},{"tname":"b","ttype":"btype"}
    ]
});
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template