Computer >> 컴퓨터 >  >> 프로그램 작성 >> MongoDB

MongoDB에서 id 필드 숨기기


문서로 컬렉션을 만들자 −

> db.demo575.insertOne({id:101,Information:{Name:"Chris",Age:21}});{
   "acknowledged" : true, "insertedId" : ObjectId("5e916a55581e9acd78b427f7")
}
> db.demo575.insertOne({id:102,Information:{Name:"David",Age:20}});{
   "acknowledged" : true, "insertedId" : ObjectId("5e916a5f581e9acd78b427f8")
}
> db.demo575.insertOne({id:101,Information:{Name:"Bob",Age:23}});{
   "acknowledged" : true, "insertedId" : ObjectId("5e916a67581e9acd78b427f9")
}

find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -

> db.demo575.find();

이것은 다음과 같은 출력을 생성합니다 -

{ "_id" : ObjectId("5e916a55581e9acd78b427f7"), "id" : 101, "Information" : { "Name" : "Chris", "Age" : 21 } }
{ "_id" : ObjectId("5e916a5f581e9acd78b427f8"), "id" : 102, "Information" : { "Name" : "David", "Age" : 20 } } 
{ "_id" : ObjectId("5e916a67581e9acd78b427f9"), "id" : 101, "Information" : { "Name" : "Bob", "Age" : 23 } }

다음은 id 필드 값을 숨기고 나머지를 표시하는 쿼리입니다 -

> db.demo575.find({id:101},{"Information.Name":1});

이것은 다음과 같은 출력을 생성합니다 -

{ "_id" : ObjectId("5e916a55581e9acd78b427f7"), "Information" : { "Name" : "Chris" } }
{ "_id" : ObjectId("5e916a67581e9acd78b427f9"), "Information" : { "Name" : "Bob" } }