Node.js MongoDB Insert

· 2019-01-28 (월) 21:48:51 · 2835

Node.js MongoDB Insert

 

컬렉션에 삽입

 

insertOne()메서드 의 첫 번째 매개 변수는 삽입 할 문서의 각 필드 이름과 값을 포함하는 객체입니다.

또한 오류 또는 삽입 결과로 작업 할 수있는 콜백 함수를 사용합니다.



"customers"컬렉션에 문서를 삽입하십시오.

var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/";

MongoClient.connect(url, function(err, db) {
  if (err) throw err;
  var dbo = db.db("mydb");
  var myobj = { name: "Company Inc", address: "Highway 37" };
  dbo.collection("customers").insertOne(myobj, function(err, res) {
    if (err) throw err;
    console.log("1 document inserted");
    db.close();
  });
});

위의 코드를 "demo_mongodb_insert.js"라는 파일에 저장하고 파일을 실행하십시오.

"demo_mongodb_insert.js"를 실행하십시오.

C:\Users\Your Name>node demo_mongodb_insert.js

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 19-06-24 조회 3,159
PHP 19-06-09 조회 3,775
MySQL 19-04-01 조회 4,819
jQuery 19-03-20 조회 4,216
node.js 19-02-12 조회 3,312
node.js 19-02-12 조회 3,044
node.js 19-02-12 조회 3,311
node.js 19-02-07 조회 3,275
node.js 19-02-07 조회 3,029
node.js 19-02-07 조회 3,163
node.js 19-02-04 조회 2,897
node.js 19-02-04 조회 2,890
node.js 19-02-04 조회 3,319
node.js 19-01-31 조회 2,431
node.js 19-01-31 조회 2,577
node.js 19-01-31 조회 3,075
node.js 19-01-28 조회 2,836
node.js 19-01-28 조회 2,915
node.js 19-01-28 조회 2,740
node.js 19-01-22 조회 3,082
node.js 19-01-22 조회 2,836
node.js 19-01-22 조회 3,269
node.js 19-01-16 조회 2,703
node.js
[node.js]
19-01-16 조회 2,612
node.js 19-01-16 조회 9,288
node.js 19-01-12 조회 4,362
node.js 19-01-12 조회 2,981
node.js 19-01-12 조회 3,107
node.js 19-01-11 조회 2,680
node.js 19-01-11 조회 3,992