您好,登錄后才能下訂單哦!
這篇文章主要介紹MongoDB怎么使用insert方法插入內(nèi)容文檔,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
MongoDB在使用更新文檔save() 方法遇到新增的數(shù)據(jù)中存在主鍵時(shí)改原來的內(nèi)容為新內(nèi)容,如果想要提示錯(cuò)誤,可以使用insert()方法。MongoDB提供了插入內(nèi)容文檔insert方法的形式一共有三個(gè),本文向大家介紹MongoDB數(shù)據(jù)庫使用insert方法插入內(nèi)容文檔的使用方法。
一、MongoDB插入內(nèi)容文檔insert方法的三種形式
1、insertOne插入一個(gè)文檔
db.collection.insertOne()
2、insertMany插入多個(gè)文檔
db.collection.insertMany()
3、insert插入一或多個(gè)文檔
db.collection.insert()
二、mongodb數(shù)據(jù)庫插入內(nèi)容文檔insert方法使用實(shí)例:
//插入文檔 collection.insert(user,{safe : true},function(err, result){ if(err){ mongodb.close(); return false; } //成功后返回的結(jié)果 console.log(result); mongodb.close();
以上是“MongoDB怎么使用insert方法插入內(nèi)容文檔”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。