Docs Menu
Docs Home
/ / /
Node.js
/ /

문서 삽입

컬렉션 .insertOne() 을 사용하여 컬렉션 에 문서 를 삽입할 수 있습니다. 메서드. 문서 를 삽입하려면 저장 하려는 필드와 값이 포함된 객체 를 정의합니다. 지정된 컬렉션 이 존재하지 않으면 insertOne() 메서드가 컬렉션 을 생성합니다.

options 매개변수를 사용하여 추가 쿼리 옵션을 지정할 수 있습니다. 메서드 매개변수에 대한 자세한 내용은 insertOne() API 문서 를 참조하세요. . 이 메서드에 대한 자세한 내용은 insertOne() API 설명서를 참조하세요.

작업이 성공적으로 문서를 삽입하면 메서드 호출에서 전달된 객체에 insertedId 필드를 추가하고 필드 값을 삽입된 문서의 _id로 설정합니다.

insertOne() 메서드를 사용하여 다음 환경에서 호스팅되는 배포서버에 Node.js 드라이버를 연결하고 사용할 수 있습니다.

  • MongoDB Atlas: 클라우드에서의 MongoDB 배포를 위한 완전 관리형 서비스

  • MongoDB Enterprise: 구독 기반의 자체 관리형 MongoDB 버전입니다.

  • MongoDB Community: 소스 사용 가능하고, 무료로 사용할 수 있는 자체 관리형 MongoDB 버전

MongoDB Atlas에서 호스팅되는 배포를 위해 Atlas UI에 문서를 삽입하는 방법에 대해 자세히 알아보려면 문서 만들기, 보기, 업데이트 및 삭제를 참조하세요.

참고

이 예시를 사용하여 MongoDB 인스턴스에 연결하고 샘플 데이터가 포함된 데이터베이스와 상호 작용할 수 있습니다. MongoDB 인스턴스에 연결하고 샘플 데이터 세트를 로드하는 방법에 대해 자세히 알아보려면 사용 예제 가이드를 참조하세요.

1import { MongoClient } from "mongodb";
2
3// Replace the uri string with your MongoDB deployment's connection string.
4const uri = "<connection string uri>";
5
6const client = new MongoClient(uri);
7
8async function run() {
9 try {
10 const database = client.db("insertDB");
11 const haiku = database.collection("haiku");
12 // create a document to insert
13 const doc = {
14 title: "Record of a Shriveled Datum",
15 content: "No bytes, no problem. Just insert a document, in MongoDB",
16 }
17 const result = await haiku.insertOne(doc);
18
19 console.log(`A document was inserted with the _id: ${result.insertedId}`);
20 } finally {
21 await client.close();
22 }
23}
24run().catch(console.dir);
1import { MongoClient } from "mongodb";
2
3// Replace the uri string with your MongoDB deployment's connection string.
4const uri = "<connection string uri>";
5
6const client = new MongoClient(uri);
7
8interface Haiku {
9 title: string;
10 content: string;
11}
12
13async function run() {
14 try {
15 const database = client.db("insertDB");
16 // Specifying a Schema is optional, but it enables type hints on
17 // finds and inserts
18 const haiku = database.collection<Haiku>("haiku");
19 const result = await haiku.insertOne({
20 title: "Record of a Shriveled Datum",
21 content: "No bytes, no problem. Just insert a document, in MongoDB",
22 });
23 console.log(`A document was inserted with the _id: ${result.insertedId}`);
24 } finally {
25 await client.close();
26 }
27}
28run().catch(console.dir);

앞의 예시를 실행하면 다음과 같은 출력이 표시됩니다.

A document was inserted with the _id: <your _id value>

돌아가기

삽입 작업