ドキュメントの更新
コレクション内のドキュメントを更新するには、 update_one() Collection
を呼び出します インスタンスのメソッド。
次のパラメータをupdate_one()
メソッドに渡します。
一致する基準を指定するクエリフィルター
ドキュメントの更新 。最初に一致したドキュメントに対する更新を指定します。
update_one()
メソッドは UpdateResult を返します 変更されたドキュメントの数など、更新操作の結果に関する情報を含むタイプ。
update_one()
メソッドの詳細については、ドキュメントの修正 ガイドの「 ドキュメントのアップデート 」セクションを参照してください。
例
この例では、 sample_restaurants
データベースのrestaurants
コレクション内のドキュメントをアップデートします。
次のコードでは、 name
フィールドの値が"Spice Market"
であるドキュメントにprice
フィールドを追加します。 MongoDB はクエリフィルターに一致する最初のドキュメントを更新します。
AsynchronousSynchronous各実行時に対応するコードを表示するには、 タブまたは タブを選択します。
use std::env; use mongodb::{ bson::{ Document, doc }, Client, Collection }; async fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri).await?; let my_coll: Collection<Document> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "name": "Spice Market" }; let update = doc! { "$set": doc! {"price": "$$$"} }; let res = my_coll.update_one(filter, update).await?; println!("Updated documents: {}", res.modified_count); Ok(()) }
Updated documents: 1
use std::env; use mongodb::{ bson::{ Document, doc }, sync::{ Client, Collection } }; fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri)?; let my_coll: Collection<Document> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "name": "Spice Market" }; let update = doc! { "$set": doc! {"price": "$$$"} }; let res = my_coll.update_one(filter, update).run()?; println!("Updated documents: {}", res.modified_count); Ok(()) }
Updated documents: 1