MongoDB插入多條數據

剛開始學mongodb,只知道幾個命令,insert插入也只能一條一條插入,而在實際狀況下數據通常都很是多,剛開始想直接上傳json文件,網上搜了n多方法發現這種方法很差弄,而後就想着要麼一會兒把多條數據插進去不就行了。mongodb

insertMany方法能夠插入多條數據,但寫法也是有要求的,在shell中這樣寫插入shell

try {
   db.products.insertMany( [
      { item: "card", qty: 15 },
      { item: "envelope", qty: 20 },
      { item: "stamps" , qty: 30 }
   ] );
}
catch (e) {
   print (e);
}

最終插入成功json

相關文章
相關標籤/搜索