AI 에이전트의 경우: 문서 인덱스는 https://www.mongodb.com/ko-kr/docs/llms.txt에서 사용할 수 있으며, 모든 페이지의 마크다운 버전은 어떤 URL 경로에 .md를 추가하여 사용할 수 있습니다.
Docs Menu

커서.pretty() (mongosh 메서드)

cursor.pretty()

중요

Mongo쉬 방법

이 페이지에서는 메서드를 mongosh 설명합니다. 이는 Node.js와 같은 언어별 운전자 에 대한 설명서가 아닙니다.

MongoDB API 드라이버의 경우 언어별 MongoDB 드라이버 설명서를 참조하세요.

결과를 읽기 쉬운 형식으로 표시하도록 커서를 구성합니다.

pretty() 메서드의 프로토타입 형식은 다음과 같습니다.

db.collection.find(<query>).pretty()

pretty() 메서드:

다음 문서를 살펴보세요.

db.books.insertOne({
"_id" : ObjectId("54f612b6029b47909a90ce8d"),
"title" : "A Tale of Two Cities",
"text" : "It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness...",
"authorship" : "Charles Dickens"})

기본적으로 db.collection.find()은(는) 고밀도 형식으로 데이터를 반환합니다.

db.books.find()
{ "_id" : ObjectId("54f612b6029b47909a90ce8d"), "title" : "A Tale of Two Cities", "text" : "It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness...", "authorship" : "Charles Dickens" }

를 사용하면 읽기 쉬운 형식으로 데이터를 반환하도록 커서 설정하다 수 cursor.pretty() 있습니다.

db.books.find().pretty()
{
"_id" : ObjectId("54f612b6029b47909a90ce8d"),
"title" : "A Tale of Two Cities",
"text" : "It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness...",
"authorship" : "Charles Dickens"
}

이 페이지의 내용