猫鼬insertMany函数如何工作

时间:2018-09-20 17:39:18

标签: javascript node.js mongoose

尝试使用插入很多,但并没有真正理解该概念。

如果我有一个对象数组:

[
  { fname: 'alex', lname: 'capros', phone: 2222222222, zip: 38974 },
  { fname: 'john', lname: 'doe', phone: 8182345678, zip: 37211 },
  ...so on and so forth
]

我的模式如下:

const ll = mongoose.Schema ({
    fname: String,
    lname: String,
    phone: Number,
    zipcode: Number,
})

我想怎么说“插入第一个之后好吗?”

我的服务器代码如下:

llSchema.insertMany({

})

大声笑,是的,我显然不了解insertMany

0 个答案:

没有答案