在mongodb中插入文檔的方法:1.啟動(dòng)mongodb;2.登錄mongodb數(shù)據(jù)庫;3.新建數(shù)據(jù)庫;4.執(zhí)行命令插入文檔;
具體步驟如下:
1.首先,在命令行中啟動(dòng)mongodb服務(wù);
net start MongoDB
2.mongodb服務(wù)啟動(dòng)后,在命令行中登錄mongodb數(shù)據(jù)庫;
mongo --host 127.0.0.1
3.登錄到mongodb數(shù)據(jù)庫后,在mongodb中新建一個(gè)text數(shù)據(jù)庫并使用;
use text;
4.最后,進(jìn)入到數(shù)據(jù)庫后,在數(shù)據(jù)庫中執(zhí)行以下命令即可插入文檔;
1)插入一個(gè)文檔
db.text.insertOne()
2)插入多個(gè)文檔
db.text.insertMany()