Skip to content

Commit df2be18

Browse files
authored
Update broken link in part 3c (Chinese)
1 parent e86815b commit df2be18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/3/zh/part3c.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ Note.find({}).then(result => {
325325
<!-- The objects are retrieved from the database with the [find](https://mongoosejs.com/docs/api/model.html#model_Model-find) method of the _Note_ model. The parameter of the method is an object expressing search conditions. Since the parameter is an empty object<code>{}</code>, we get all of the notes stored in the _notes_ collection. -->
326326
对象是通过 _Note_ 模型的 [find](https://mongoosejs.com/docs/api/model.html#model_Model-find) 方法从数据库中获取的。find 方法的参数是一个表示搜索条件的对象。由于参数是一个空对象<code>{}</code>,我们得到了 _notes_ 集合中存储的所有笔记。
327327

328-
<!-- The search conditions adhere to the Mongo search query [syntax](https://docs.mongodb.com/manual/reference/operator/). -->
329-
搜索条件遵循 Mongo 的搜索查询[语法](https://docs.mongodb.com/manual/reference/operator/)
328+
<!-- The search conditions adhere to the Mongo search query [syntax](https://www.mongodb.com/zh-cn/docs/manual/tutorial/query-documents/). -->
329+
搜索条件遵循 Mongo 的搜索查询[语法](https://www.mongodb.com/zh-cn/docs/manual/tutorial/query-documents/)
330330

331331
<!-- We could restrict our search to only include important notes like this: -->
332332
我们可以这么限制我们的搜索,使其只包含重要的笔记:

0 commit comments

Comments
 (0)