Docs 菜单
Docs 主页
/
入门指南

添加 MongoDB 驱动程序

在本指南中,您将了解如何将 MongoDB 驱动程序添加到您的项目中。

所需时间:5 分钟

为编程语言配置的环境。

提示

使用上面的语言选择器可以在语言之间切换。

使用 NuGet添加MongoDB .NET/ C#驾驶员。 使用 MongoDB。驱动程序 对于所有新项目。

  • .NET CLI

    dotnet add package MongoDB.Driver --version 2.17.0
  • 包管理器:

    PM > Install-Package MongoDB.Driver -Version 2.17.0
  • 包参考文档

    <PackageReference Include=MongoDB.Driver" Version="2.17.0" />

使用go mod添加MongoDB Go驾驶员。

mkdir guides
cd guides
go mod init guides
go get go.mongodb.org/mongo-driver/mongo

通过以下方式之一将MongoDB Java驾驶员添加到您的项目中:

  • 如果使用 Maven,请将以下内容添加到您的 pom.xml 依赖项列表中:

    <dependencies>
    <dependency>
    <groupId>org.mongodb</groupId>
    <artifactId>mongodb-driver-sync</artifactId>
    <version>4.7.0</version>
    </dependency>
    </dependencies>
  • 如果使用 Gradle,则将以下内容添加到 build.gradle 依赖项列表中:

    dependencies {
    implementation 'org.mongodb:mongodb-driver-sync:4.7.0'
    }

配置依赖项后,请确保它们可用于您的项目,这可能需要运行依赖项管理器并在您的 IDE 中刷新项目。

如要将 MongoDB Node.js 驱动程序添加到您的项目,请使用 npm

npm install mongodb

使用 pip 添加MongoDBPython 驾驶员 。PyMongo

python3 -m pip install 'pymongo[srv]'

如果您成功完成了本指南中的步骤,那么您就已经将 MongoDB 驱动程序添加到您的项目中。

在下一篇指南中,您将了解如何从 MongoDB 检索数据。

其他 CRUD 指南:

  • 从 MongoDB 中读取数据

  • 通过查询从 MongoDB 中读取数据

  • 使用操作符和复合查询读取数据

  • 将数据插入 MongoDB

  • 在 MongoDB 中更新数据

  • 从 MongoDB 中删除数据

接下来的步骤
从 MongoDB 中读取数据
10 分钟

无需查询,即可检索 MongoDB 中的文档。

入门指南
第2章
CRUD
  • 添加 MongoDB 驱动程序
  • 从 MongoDB 中读取数据
  • 通过查询从 MongoDB 中读取数据
  • 使用操作符和复合查询读取数据
  • 将数据插入 MongoDB
  • 在 MongoDB 中更新数据
  • 从 MongoDB 中删除数据