db.col.insertMany(
[
{
"_id" : "tt0084726",
"title" : "Star Trek II: The Wrath of Khan",
"year" : 1982,
"type" : "movie"
},
{
"_id" : "tt0796366",
"title" : "Star Trek",
"year" : 2009,
"type" : "movie"
},
{
"_id" : "tt0084726",
"title" : "Star Trek II: The Wrath of Khan",
"year" : 1982,
"type" : "movie"
}
]
);
我正在参加 University of MongoDB 的类(class)。当我将上述命令输入 mongo shell 时,出现错误:
TypeError: Property 'insertMany' of object test.col is not a function
如何解决?我已经阅读了文档,但仍然失败。 最佳答案
我有一个类似的问题。你需要有 3.2 版
> New in version 3.2.
您需要更新您的 mongodb 版本以使用 insertMany
。
没那么难。几周前我使用 insertMany
关于javascript - 类型错误 : mongodb property insertmany is not a function,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37585521/