更新文档
您可以通过调用 文档 () Collection
实例上的方法。
将以下参数传递给update_one()
方法:
查询筛选器,指定要匹配的条件
更新文档,指定对第一个匹配文档进行的更新
update_one()
方法返回 UpdateResult 类型,其中包含有关更新操作结果的信息,例如已修改文档的数量。
要学习;了解有关update_one()
方法的更多信息,请参阅修改文档指南中的更新文档部分。
例子
此示例更新sample_restaurants
数据库的restaurants
集合中的文档。
以下代码将price
字段添加到name
字段值为"Spice Market"
的文档中。 MongoDB 更新与查询筛选器匹配的第一个文档。
选择 Asynchronous或Synchronous标签页,查看每个运行时的相应代码:
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