Docs 菜单
Docs 主页
/ / /
Rust 驱动程序
/

删除文档

您可以通过在 实例上调用 delete_one() Collection方法从集合中删除文档。

将查询筛选器传递给delete_one()方法以匹配要从集合中删除的文档。 如果有多个文档与查询筛选器匹配,MongoDB 会根据其在数据库中的 自然顺序 或根据 DeleteOptions 中指定的排序顺序删除第一个匹配的文档 实例。

delete_one()方法返回 DeleteResult 类型。此类型包含有关删除操作结果的信息,例如删除的文档总数。

要学习;了解有关删除操作的更多信息,请参阅删除文档指南。

此示例从sample_restaurants数据库的restaurants集合中删除与查询筛选器匹配的文档。

此示例使用查询筛选器来匹配name字段值为"Haagen-Dazs"borough字段为"Brooklyn"的文档。 MongoDB 会删除与查询筛选器匹配的第一个文档。

选择 AsynchronousSynchronous标签页,查看每个运行时的相应代码:

use mongodb::{
bson::{ Document, doc },
Client,
Collection
};
#[tokio::main]
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! { "$and": [
doc! { "name": "Haagen-Dazs" },
doc! { "borough": "Brooklyn" }
]
};
let result = my_coll.delete_one(filter).await?;
println!("Deleted documents: {}", result.deleted_count);
Ok(())
}
Deleted documents: 1
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! { "$and": [
doc! { "name": "Haagen-Dazs" },
doc! { "borough": "Brooklyn" }
]
};
let result = my_coll.delete_one(filter).run()?;
println!("Deleted documents: {}", result.deleted_count);
Ok(())
}
Deleted documents: 1

后退

replaceOne