Docs 菜单
Docs 主页
/ /

使用示例

使用示例显示可运行的代码示例,以演示常用的 MongoDB 操作。 每个用法示例都包括以下内容:

  • MongoDB 操作说明

  • 可以在您的环境中运行的异步和同步 Rust 代码示例

  • 代码示例打印的输出

提示

异步和同步 API

要学习有关在 Rust 驱动程序中选择和使用不同运行时 API 的详情,请参阅 异步和同步 API 指南

这些用法示例旨在对包含 Atlas 样本数据集的 MongoDB 部署运行操作。 在没有样本数据的情况下运行示例代码时,输出可能不匹配。

Follow this tutorial to set up your MongoDB deployment with the sample data and run the example code in your development environment. Before performing the following actions, ensure that you create an Atlas account and deploy a cluster. For information about setting up an account and a cluster, see the MongoDB Get Started guide.

1

按照“加载样本数据”页面上的说明将样本数据集加载到数据库部署中。

2

从用法示例页面复制示例代码,并将其粘贴到首选目录中的新文件中。

要了解有关创建使用 Rust 驱动程序的应用程序的更多信息,请参阅Rust 驱动程序快速入门。

3

在示例代码中,将 connection string占位符替换为 MongoDB 部署连接字符串。 例如,如果连接字符串是"mongodb+srv://mongodb-example:27017" ,则连接字符串分配类似于以下内容:

let uri = "mongodb+srv://mongodb-example:27017";
4

在开发环境中运行应用程序。 如果在命令行上运行 Rust 应用程序,请运行以下命令:

cargo run

完成这些步骤后,您可以看到相应用法示例的预期输出部分中描述的输出。

后退

新增功能

在此页面上