cursor.pretty()
정의
cursor.pretty()
중요
Mongo쉬 방법
이 페이지에서는
mongosh
메서드를 설명합니다. 이는 Node.js와 같은 언어별 드라이버에 대한 설명서가 아닙니다.MongoDB API 드라이버의 경우 언어별 MongoDB 드라이버 설명서를 참조하세요.
결과를 읽기 쉬운 형식으로 표시하도록 커서를 구성합니다.
pretty()
메서드의 프로토타입 형식은 다음과 같습니다.db.collection.find(<query>).pretty()
행동
pretty()
메서드는 다음과 같습니다.
mongosh
의 출력 형식을 변경하지 않습니다.
예시
다음 문서를 살펴보세요.
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" }