문서 교체하기
인스턴스 에서replace_one() 메서드를 호출하여 컬렉션 의 문서 를 바꿀 수 있습니다.Collection
다음 매개변수를 replace_one()
메서드에 전달합니다:
일치시킬 기준을 지정하는 쿼리 필터
첫 번째 일치 문서를 대체할 필드와 값이 포함된 대체 문서
replace_one()
메서드는 UpdateResult 를 반환합니다. 수정된 문서 수와 같이 바꾸기 작업의 결과에 대한 정보가 포함된 유형입니다.
replace_one()
메서드에 학습 보려면 문서 수정 가이드 의 문서 교체 섹션을 참조하세요.
예시
이 예시 에서는 sample_restaurants
데이터베이스 의 restaurants
컬렉션 에 있는 문서 를 대체합니다. replace_one()
메서드는 name
필드 의 값이 "Landmark Coffee Shop"
인 첫 번째 문서 를 새 문서 로 대체합니다.
restaurants
컬렉션 의 문서에 Document
유형 또는 사용자 지정 데이터 유형 의 인스턴스로 액세스 할 수 있습니다. 컬렉션의 데이터를 나타내는 데이터 유형 을 지정하려면 강조 표시된 줄에서 다음 작업을 수행합니다.
컬렉션 문서에 BSON 문서로 액세스 하려면
<T>
유형 매개변수를<Document>
로 바꾸고<struct or doc>
자리 표시자를replace_doc
로 바꿉니다.Restaurant
구조체의 인스턴스로 컬렉션 문서에 액세스 하려면<T>
유형 매개변수를<Restaurant>
로 바꾸고<struct or doc>
자리 표시자를replace_struct
로 바꿉니다.Restaurant
구조체는 코드 파일 의 맨 위에 정의됩니다.
Asynchronous 또는 Synchronous 탭을 선택하여 각 런타임에 해당하는 코드를 확인합니다.
use std::env; use mongodb::{ bson::doc, Client, Collection }; use serde::{ Deserialize, Serialize }; struct Restaurant { borough: String, cuisine: String, name: String, } async fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri).await?; // Replace <T> with the <Document> or <Restaurant> type parameter let my_coll: Collection<T> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "name": "Landmark Coffee Shop" }; let replace_doc = doc! { "borough": "Brooklyn", "cuisine": "Café/Coffee/Tea", "name": "Harvest Moon Café", }; let replace_struct = Restaurant { borough: "Brooklyn".to_string(), cuisine: "Café/Coffee/Tea".to_string(), name: "Harvest Moon Café".to_string(), }; // Replace <struct or doc> with the replace_struct or replace_doc variable let res = my_coll.replace_one(filter, <struct or doc>).await?; println!("Replaced documents: {}", res.modified_count); Ok(()) }
Replaced documents: 1
use std::env; use mongodb::{ bson::doc, sync::{ Client, Collection } }; use serde::{ Deserialize, Serialize }; struct Restaurant { borough: String, cuisine: String, name: String, } fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri)?; // Replace <T> with the <Document> or <Restaurant> type parameter let my_coll: Collection<T> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "name": "Landmark Coffee Shop" }; let replace_doc = doc! { "borough": "Brooklyn", "cuisine": "Café/Coffee/Tea", "name": "Harvest Moon Café", }; let replace_struct = Restaurant { borough: "Brooklyn".to_string(), cuisine: "Café/Coffee/Tea".to_string(), name: "Harvest Moon Café".to_string(), }; // Replace <struct or doc> with the replace_struct or replace_doc variable let res = my_coll.replace_one(filter, <struct or doc>).run()?; println!("Replaced documents: {}", res.modified_count); Ok(()) }
Replaced documents: 1