
MongoDBBSONDocument::fromJSON를 사용하여 JSON 데이터를 MongoDB document로 변환할 때, address 필드는 nested document 형태로 저장됩니다.
위 예제에서, document["address"]는 BSONDocument 타입의 nested document를 반환합니다.
이러한 형태로 address 필드는 MongoDB document의 nested document로 저장됩니다.
2025-04-14 01:13