Docs 菜单
Docs 主页
/
入门指南

从 MongoDB 中读取数据

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

所需的时间:10 分钟

  • stringMongoDB部署的 连接 。

  • 加载到集群中的示例数据集。

  • 已安装的 MongoDB 驱动程序

1

提示

下面概述了连接到 MongoDB 所需的最少代码。在接下来的几个步骤中,您将添加更多内容来读取数据。

在第 5 行,将 URI 字符串替换为您自己的 Atlas 连接字符串

CrudRead.cs
1using MongoDB.Bson;
2using MongoDB.Driver;
3
4// Replace the uri string with your MongoDB deployment's connection string.
5var uri = "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority";
6
7var client = new MongoClient(uri);
8
9// database and collection code goes here
10// find code goes here
11// iterate code goes here
12
13
14

提示

下面概述了连接到 MongoDB 所需的最少代码。在接下来的几个步骤中,您将添加更多内容来读取数据。

在第 11 行,将 URI string替换为您自己的Atlas连接string 。

crudRead.go
1package main
2
3import (
4 "context"
5
6 "go.mongodb.org/mongo-driver/mongo"
7 "go.mongodb.org/mongo-driver/mongo/options"
8)
9
10func main() {
11 uri := "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority"
12
13 client, err := mongo.Connect(context.TODO(), options.Client().ApplyURI(uri))
14 if err != nil {
15 panic(err)
16 }
17
18 defer func() {
19 if err = client.Disconnect(context.TODO()); err != nil {
20 panic(err)
21 }
22 }()
23
24 // database and colletion code goes here
25 // find code goes here
26 // iterate code goes here
27}

提示

下面概述了连接到 MongoDB 所需的最少代码。在接下来的几个步骤中,您将添加更多内容来读取数据。

在第 8 行,将 URI string替换为您自己的Atlas连接string 。

CrudRead.java
1import com.mongodb.client.*;
2import com.mongodb.client.model.Filters.*;
3import org.bson.Document;
4import org.bson.conversions.Bson;
5
6public class CrudRead {
7 public static void main(String[] args) {
8 String uri = "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority";
9
10 try (MongoClient mongoClient = MongoClients.create(uri)) {
11 // database and collection code goes here
12 // find code goes here
13 // iterate code goes here
14 }
15 }
16}

提示

下面概述了连接到 MongoDB 所需的最少代码。在接下来的几个步骤中,您将添加更多内容来读取数据。

在第 4 行,将 URI 字符串替换为您自己的 Atlas 连接字符串

crud-read.js
1const { MongoClient } = require("mongodb");
2// Replace the uri string with your MongoDB deployment's connection string.
3const uri =
4 "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority";
5const client = new MongoClient(uri);
6async function run() {
7 try {
8 await client.connect();
9 // database and collection code goes here
10 // find code goes here
11 // iterate code goes here
12 } finally {
13 // Ensures that the client will close when you finish/error
14 await client.close();
15 }
16}
17run().catch(console.dir);

提示

下面概述了连接到 MongoDB 所需的最少代码。在接下来的几个步骤中,您将添加更多内容来读取数据。

在第 4 行,将 URI 字符串替换为您自己的 Atlas 连接字符串

crud_read.py
1from pymongo import MongoClient
2
3# Replace the uri string with your MongoDB deployment's connection string.
4uri = "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority"
5
6client = MongoClient(uri)
7
8# database and collection code goes here
9# find code goes here
10# iterate code goes here
11
12# Close the connection to MongoDB when you're done.
13client.close()

提示

mongodb+srv

确保您已使用 srv选项安装PyMongo 。

python3 -m pip install "pymongo[srv]"

在此代码块中有一条注释,用于将连接 URI 替换为您自己的 URI。请务必将 URI 字符串替换为您的 Atlas 连接字符串

2

切换到要查询的数据库和集合。在本例中,您将使用 sample_guides 数据库和 planets 集合。

CrudRead.cs
// database and collection code goes here
var db = client.GetDatabase("sample_guides");
var coll = db.GetCollection<BsonDocument>("planets");
crudRead.go
1// database and colletion code goes here
2db := client.Database("sample_guides")
3coll := db.Collection("planets")
CrudRead.java
1// database and collection code goes here
2MongoDatabase db = mongoClient.getDatabase("sample_guides");
3MongoCollection<Document> coll = db.getCollection("planets");
crud-read.js
// database and collection code goes here
const db = client.db("sample_guides");
const coll = db.collection("planets");
crud_read.py
# database and collection code goes here
db = client.sample_guides
coll = db.planets
3
CrudRead.cs
// find code goes here
var cursor = coll.AsQueryable();

使用 Find() 方法检索所有文档。在另一篇指南中,您将了解如何使用相同的方法检索匹配特定条件的文档。

提示

必须使用空的 bson.D{} 才能匹配所有文档。

crudRead.go
1// find code goes here
2cursor, err := coll.Find(context.TODO(), bson.D{})
3if err != nil {
4 panic(err)
5}

使用 find() 方法检索所有文档。在另一篇指南中,您将了解如何使用相同的方法检索匹配特定条件的文档。

CrudRead.java
1// find code goes here
2MongoCursor<Document> cursor = coll.find().iterator();

使用 find() 方法检索所有文档。在另一篇指南中,您将了解如何使用相同的方法检索匹配特定条件的文档。

crud-read.js
// find code goes here
const cursor = coll.find();

使用 find() 方法检索所有文档。在另一篇指南中,您将了解如何使用相同的方法检索匹配特定条件的文档。

crud_read.py
# find code goes here
cursor = coll.find()
4
CrudRead.cs
// iterate code goes here
foreach (var document in cursor.ToEnumerable())
{
Console.WriteLine(document);
}
crudRead.go
1// iterate code goes here
2for cursor.Next(context.TODO()) {
3 var result bson.M
4 if err := cursor.Decode(&result); err != nil {
5 panic(err)
6 }
7 fmt.Println(result)
8}
9if err := cursor.Err(); err != nil {
10 panic(err)
11}
CrudRead.java
1// iterate code goes here
2try {
3 while (cursor.hasNext()) {
4 System.out.println(cursor.next().toJson());
5 }
6} finally {
7 cursor.close();
8}

迭代结果并将其打印到控制台。默认情况下,此类操作在 MongoDB Node.js 驱动程序中是异步的,这意味着 Node.js 运行时在等待这些操作完成执行的过程中,不会阻塞其他操作。

为了简化操作,您可以指定 await 关键字,这导致运行时等待操作。这通常要比指定 回调 或链式调用 Promise 更加简便。

有关更多信息,请参阅 Promise 和 Callbacks指南。

crud-read.js
// iterate code goes here
await cursor.forEach(console.log);
crud_read.py
# iterate code goes here
for doc in cursor:
print(doc)
5

以下是完整的代码,然后是样本输出。

注意

您的 ObjectId 值将与显示的值不同。

以下是完整的代码,然后是样本输出。

CrudRead.cs
1using MongoDB.Bson;
2using MongoDB.Driver;
3
4// Replace the uri string with your MongoDB deployment's connection string.
5var uri = "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority";
6
7var client = new MongoClient(uri);
8
9// database and collection code goes here
10var db = client.GetDatabase("sample_guides");
11var coll = db.GetCollection<BsonDocument>("planets");
12// find code goes here
13var cursor = coll.AsQueryable();
14// iterate code goes here
15foreach (var document in cursor)
16{
17 Console.WriteLine(document);
18}
19
20
{
'_id': ObjectId('621ff30d2a3e781873fcb65c'),
'name': 'Mercury',
'orderFromSun': 1,
'hasRings': False,
'mainAtmosphere': [],
'surfaceTemperatureC': {'min': -173, 'max': 427, 'mean': 67}
},
...

以下是完整的代码,然后是样本输出。

crudRead.go
1package main
2
3import (
4 "context"
5 "fmt"
6
7 "go.mongodb.org/mongo-driver/bson"
8 "go.mongodb.org/mongo-driver/mongo"
9 "go.mongodb.org/mongo-driver/mongo/options"
10)
11
12func main() {
13 uri := "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority"
14
15 client, err := mongo.Connect(context.TODO(), options.Client().ApplyURI(uri))
16 if err != nil {
17 panic(err)
18 }
19
20 defer func() {
21 if err = client.Disconnect(context.TODO()); err != nil {
22 panic(err)
23 }
24 }()
25
26 // database and colletion code goes here
27 db := client.Database("sample_guides")
28 coll := db.Collection("planets")
29
30 // find code goes here
31 cursor, err := coll.Find(context.TODO(), bson.D{})
32 if err != nil {
33 panic(err)
34 }
35
36 // iterate code goes here
37 for cursor.Next(context.TODO()) {
38 var result bson.M
39 if err := cursor.Decode(&result); err != nil {
40 panic(err)
41 }
42 fmt.Println(result)
43 }
44 if err := cursor.Err(); err != nil {
45 panic(err)
46 }
47
48}
map[_id:ObjectID("621ff30d2a3e781873fcb65c") hasRings:false mainAtmosphere:[] name:Mercury orderFromSun:1 surfaceTemperatureC:map[max:427 mean:67 min:-173]]
...

以下是完整的代码,然后是样本输出。

CrudRead.java
1import com.mongodb.client.*;
2import com.mongodb.client.model.Filters.*;
3import org.bson.Document;
4import org.bson.conversions.Bson;
5
6public class CrudRead {
7 public static void main(String[] args) {
8 String uri = "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority";
9
10 try (MongoClient mongoClient = MongoClients.create(uri)) {
11 // database and collection code goes here
12 MongoDatabase db = mongoClient.getDatabase("sample_guides");
13 MongoCollection<Document> coll = db.getCollection("planets");
14
15 // find code goes here
16 MongoCursor<Document> cursor = coll.find().iterator();
17
18 // iterate code goes here
19 try {
20 while (cursor.hasNext()) {
21 System.out.println(cursor.next().toJson());
22 }
23 } finally {
24 cursor.close();
25 }
26 }
27 }
28}
{"_id": {"$oid": "621ff30d2a3e781873fcb65c"}, "name": "Mercury", "orderFromSun": 1, "hasRings": false, "mainAtmosphere": [], "surfaceTemperatureC": {"min": -173, "max": 427, "mean": 67}}
...

以下是完整的代码,然后是样本输出。

crud-read.js
1const { MongoClient } = require("mongodb");
2// Replace the uri string with your MongoDB deployment's connection string.
3const uri =
4 "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority";
5const client = new MongoClient(uri);
6async function run() {
7 try {
8 await client.connect();
9 // database and collection code goes here
10 const db = client.db("sample_guides");
11 const coll = db.collection("planets");
12
13 // find code goes here
14 const cursor = coll.find();
15
16 // iterate code goes here
17 await cursor.forEach(console.log);
18 } finally {
19 // Ensures that the client will close when you finish/error
20 await client.close();
21 }
22}
23run().catch(console.dir);
{
'_id': ObjectId('621ff30d2a3e781873fcb65c'),
'name': 'Mercury',
'orderFromSun': 1,
'hasRings': False,
'mainAtmosphere': [],
'surfaceTemperatureC': {'min': -173, 'max': 427, 'mean': 67}
},
...

以下是完整的代码,然后是样本输出。

crud_read.py
1from pymongo import MongoClient
2
3# Replace the uri string with your MongoDB deployment's connection string.
4uri = "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&writeConcern=majority"
5
6client = MongoClient(uri)
7
8# database and collection code goes here
9db = client.sample_guides
10coll = db.planets
11# find code goes here
12cursor = coll.find({"hasRings": True})
13# iterate code goes here
14for doc in cursor:
15 print(doc)
16
17# Close the connection to MongoDB when you're done.
18client.close()
{
'_id': ObjectId('621ff30d2a3e781873fcb65c'),
'name': 'Mercury',
'orderFromSun': 1,
'hasRings': False,
'mainAtmosphere': [],
'surfaceTemperatureC': {'min': -173, 'max': 427, 'mean': 67}
},
...

如成功完成本指南中的操作步骤,那么您应该已经从 MongoDB 检索了数据。

在下一篇指南中,您将学习如何使用条件从 MongoDB 检索数据。

其他 CRUD 指南:

接下来的步骤
通过查询从 MongoDB 中读取数据
15分钟

使用查询指定要在 MongoDB 中检索哪些文档。

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