Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zh-cn: fix typos in the "Book list page" guide #23082

Merged
merged 5 commits into from
Aug 21, 2024
Merged

Conversation

ikenk
Copy link
Contributor

@ikenk ikenk commented Aug 15, 2024

Description

fixed some flaws and added missing paragraphs for Express Tutorial Part 5: Displaying library data => Book list page

Motivation

fixed some flaws and added missing paragraphs

Additional details

To provide a more comprehensive understanding of the article.

Related issues and pull requests

Changes to be committed:
	modified:   files/zh-cn/learn/server-side/express_nodejs/displaying_data/book_list_page/index.md

-- fix some flaws and add missing paragraphs for Express Tutorial Part 5: Displaying library data => Book list page
@ikenk ikenk requested a review from a team as a code owner August 15, 2024 16:25
@ikenk ikenk requested review from t7yang and removed request for a team August 15, 2024 16:25
@github-actions github-actions bot added the l10n-zh Issues related to Chinese content. label Aug 15, 2024
Copy link
Contributor

github-actions bot commented Aug 15, 2024

Preview URLs

Flaws (1)

URL: /zh-CN/docs/Learn/Server-side/Express_Nodejs/Displaying_data/Book_list_page
Title: 书本列表页面
Flaw count: 1

  • translation_differences:
    • Differences in the important macros (0 in common of 1 possible)

(comment last updated: 2024-08-20 13:41:33)

Copy link
Member

@yin1999 yin1999 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @ikenk. I could found other issues in this document. You may want to fix them before getting it merged :)

Copy link
Contributor

@jasonren0403 jasonren0403 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some suggestions

@@ -7,28 +7,27 @@ slug: Learn/Server-side/Express_Nodejs/Displaying_data/Book_list_page

## 控制器

书本列表控制器函数,需要获取数据库中所有`Book`对象的列表,然后将这些对象传给模板进行呈现。
书本列表控制器函数,需要获取数据库中所有 `Book` 对象的列表,然后将这些对象传给模板进行呈现。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
书本列表控制器函数,需要获取数据库中所有 `Book` 对象的列表,然后将这些对象传给模板进行呈现
书本列表控制器函数需要获取数据库中所有 `Book` 对象的列表,对它们进行排序,然后将它们传给模板进行渲染

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里还未修改


打开 **/controllers/bookController.js**. 找到导出的 `book_list()` 控制器方法,并替换為下面的代码
打开 **/controllers/bookController.js**. 找到导出的 `book_list()` 控制器方法,并替换为下面的代码
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
打开 **/controllers/bookController.js**. 找到导出的 `book_list()` 控制器方法,并替换为下面的代码。
打开 **/controllers/bookController.js**找到导出的 `book_list()` 控制器方法,并替换为下面的代码。

```

该方法使用模型的`find()`函数返回所有`Book`对象,选择仅返回标题`title`和作者`author`,因为我们不需要其他字段(它也会返回`_id`和虚拟字段)。这里我们还调用`Book`上的`populate()` ,指定作者`author`字段 — 这将用完整的作者信息,替换存储的书本作者 id。
该路由处理器调用 `Book` 模型的 `find()` 方法,仅选择返回标题 `title` 和作者 `author`,因为我们不需要其他字段(它也会返回 `_id` 和虚拟字段),然后使用 `sort()` 方法对 `title` 进行字母排序。我们还调用了 `Book` 上的 `populate()`,指定作者 `author` 字段 —— 即用完整的作者信息替换所存储书本的作者的 id。最后调用 `exec()` 来执行查询操作并返回一个 **Promise**。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
该路由处理器调用 `Book` 模型的 `find()` 方法,仅选择返回标题 `title` 和作者 `author`,因为我们不需要其他字段(它也会返回 `_id` 和虚拟字段),然后使用 `sort()` 方法对 `title` 进行字母排序。我们还调用了 `Book` 上的 `populate()`,指定作者 `author` 字段 —— 即用完整的作者信息替换所存储书本的作者的 id。最后调用 `exec()` 来执行查询操作并返回一个 **Promise**
该路由处理器调用 `Book` 模型的 `find()` 方法,仅选择返回标题 `title` 和作者 `author`,因为我们不需要其他字段(它也会返回 `_id` 和虚拟字段),然后使用 `sort()` 方法对 `title` 进行字母排序。我们还调用了 `Book` 上的 `populate()`,指定作者 `author` 字段——即用完整的作者信息替换所存储书本的作者的 id。最后链式调用 `exec()` 来执行查询操作并返回一个 **Promise**

该方法使用模型的`find()`函数返回所有`Book`对象,选择仅返回标题`title`和作者`author`,因为我们不需要其他字段(它也会返回`_id`和虚拟字段)。这里我们还调用`Book`上的`populate()` ,指定作者`author`字段 — 这将用完整的作者信息,替换存储的书本作者 id。
该路由处理器调用 `Book` 模型的 `find()` 方法,仅选择返回标题 `title` 和作者 `author`,因为我们不需要其他字段(它也会返回 `_id` 和虚拟字段),然后使用 `sort()` 方法对 `title` 进行字母排序。我们还调用了 `Book` 上的 `populate()`,指定作者 `author` 字段 —— 即用完整的作者信息替换所存储书本的作者的 id。最后调用 `exec()` 来执行查询操作并返回一个 **Promise**。

路由处理器使用 `await` 来等待 **Promise**,代码会暂停执行直到它被解决。如果 **Promise** 被兑现,查询结果就会被存储到 `allBooks` 变量中去,并继续执行后续代码。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
路由处理器使用 `await` 来等待 **Promise**代码会暂停执行直到它被解决。如果 **Promise** 被兑现,查询结果就会被存储到 `allBooks` 变量中去,并继续执行后续代码。
路由处理器使用 `await` 来等待 **Promise**代码会暂停执行直到它被兑现。如果 **Promise** 被兑现,查询结果就会被存储到 `allBooks` 变量中,并继续执行后续代码。

```

這个视图扩展了 **layout.pug** 基本模板,并覆盖了名为 '**content**' 的區块 `block` 。它显示我们从控制器传入的标题`title`(通过`render()`方法),然后使用`each`-`in`-`else`语法,遍历`book_list`变量。为每本图书创建一个列表项,以显示书名,并作为书的详细信息页面的链接,后面跟着作者姓名。如果`book_list`中没有书,则执行`else`子句,并显示文字“没有书” 'There are no books.'。
这个视图扩展了 **layout.pug** 基本模板,并覆盖了名为 '**content**' 的区块 `block` 。它显示了我们从控制器传入的标题 `title`(通过 `render()` 方法),然后使用 `each`-`in` 语法,遍历 `book_list` 变量。为每本图书创建一个列表项,以显示书名,并作为书的详细信息页面的链接,后面跟着作者姓名。如果 `book_list` 中没有书,则执行 `else` 子句,并显示文字 'There are no books.'。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
这个视图扩展了 **layout.pug** 基本模板,并覆盖了名为 '**content**' 的区块 `block` 。它显示了我们从控制器传入的标题 `title`(通过 `render()` 方法),然后使用 `each`-`in` 语法,遍历 `book_list` 变量为每本图书创建一个列表项,以显示书名,并作为书的详细信息页面的链接,后面跟着作者姓名。如果 `book_list` 中没有书,则执行 `else` 子句,并显示文字 'There are no books.'
这个视图扩展了 **layout.pug** 基本模板,并覆盖了名为**content**的区块`block`。它显示了我们从控制器传入的标题 `title`(通过 `render()` 方法),然后使用 `each`-`in` 语法遍历 `book_list` 变量为每本图书创建一个列表项,以显示书名,并作为书的详细信息页面的链接,后面跟着作者姓名。如果 `book_list` 中没有书,则执行 `else` 子句,并显示文本“There are no books.


> [!NOTE]
> 我们使用 `book.url` ,为每本书提供详细记录链接(我们已经实现了此路由,但尚未实现此页面)。这是 `Book` 模型的一个虚拟属性,它使用模型实例的 `_id` 字段,生成唯一的 URL 路径。
> 我们使用 `book.url`,为每本书提供详细记录的链接(我们已经实现了此路由,但尚未实现此页面)。这是 `Book` 模型的一个虚拟属性,它使用模型实例的 `_id` 字段,生成唯一的 URL 路径。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
> 我们使用 `book.url`为每本书提供详细记录的链接(我们已经实现了此路由,但尚未实现此页面)。这是 `Book` 模型的一个虚拟属性,它使用模型实例的 `_id` 字段,生成唯一的 URL 路径。
> 我们使用 `book.url` 为每本书提供详细记录的链接(我们已经实现了此路由,但尚未实现此页面)。这是 `Book` 模型的一个虚拟属性,它使用模型实例的 `_id` 字段,生成唯一的 URL 路径。


> [!NOTE]
> 我们使用 `book.url` ,为每本书提供详细记录链接(我们已经实现了此路由,但尚未实现此页面)。这是 `Book` 模型的一个虚拟属性,它使用模型实例的 `_id` 字段,生成唯一的 URL 路径。
> 我们使用 `book.url`,为每本书提供详细记录的链接(我们已经实现了此路由,但尚未实现此页面)。这是 `Book` 模型的一个虚拟属性,它使用模型实例的 `_id` 字段,生成唯一的 URL 路径。

在这里,我們感兴趣的是,每本书被定义为两行,第二行使用管道(上面高亮显示)。这种方法是必要的,因为如果作者姓名位于上一行,那么它将成为超链接的一部分。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
在这里,我們感兴趣的是,每本书被定义为两行,第二行使用管道(上面高亮显示)。这种方法是必要的,因为如果作者姓名位于上一行,那么它将成为超链接的一部分。
值得注意的是,每本书被定义为两行,第二行使用管道。这种方法是必要的,因为如果作者姓名位于上一行,那么它将成为超链接的一部分。


在这里,我們感兴趣的是,每本书被定义为两行,第二行使用管道(上面高亮显示)。这种方法是必要的,因为如果作者姓名位于上一行,那么它将成为超链接的一部分。

## 它看起來像是?

运行本应用 (参见 [测试路由](/zh-CN/docs/Learn/Server-side/Express_Nodejs/routes#Testing_the_routes) 有相关的命令) ,并打开你的浏览器,访问 <http://localhost:3000/>。然后选择 所有书本 连结。如果每样东西都设定正确了,你的网站看起来应该像底下的截图。
运行本应用 (参见 [测试路由](/zh-CN/docs/Learn/Server-side/Express_Nodejs/routes#Testing_the_routes) 有相关的命令) ,并打开你的浏览器,访问 <http://localhost:3000/>。然后选择 _All books_ 链接。如果每样东西都设定正确了,你的网站看起来应该像底下的截图。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
运行本应用 (参见 [测试路由](/zh-CN/docs/Learn/Server-side/Express_Nodejs/routes#Testing_the_routes) 有相关的命令) ,并打开你的浏览器,访问 <http://localhost:3000/>。然后选择 _All books_ 链接。如果每样东西都设定正确了,你的网站看起来应该像底下的截图。
运行本应用(参见[测试路由](/zh-CN/docs/Learn/Server-side/Express_Nodejs/routes#测试路由)以了解相关命令),并打开你的浏览器,访问 `http://localhost:3000/`。然后选择 _All books_ 链接。如果每样东西都设定正确了,你的网站看起来应该像底下的截图。


在这里,我們感兴趣的是,每本书被定义为两行,第二行使用管道(上面高亮显示)。这种方法是必要的,因为如果作者姓名位于上一行,那么它将成为超链接的一部分。

## 它看起來像是?

运行本应用 (参见 [测试路由](/zh-CN/docs/Learn/Server-side/Express_Nodejs/routes#Testing_the_routes) 有相关的命令) ,并打开你的浏览器,访问 <http://localhost:3000/>。然后选择 所有书本 连结。如果每样东西都设定正确了,你的网站看起来应该像底下的截图。
运行本应用 (参见 [测试路由](/zh-CN/docs/Learn/Server-side/Express_Nodejs/routes#Testing_the_routes) 有相关的命令) ,并打开你的浏览器,访问 <http://localhost:3000/>。然后选择 _All books_ 链接。如果每样东西都设定正确了,你的网站看起来应该像底下的截图。

![Book List Page - Express Local Library site](new_book_list.png)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alt 文本要翻译

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

具体是指“Book List Page - Express Local Library site ”吗?
我看了这个主题下的其他的文档,它们的alt也是英文,也就是说以后全部统一改成中文是吗?

Copy link
Contributor

@jasonren0403 jasonren0403 Aug 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

最好都翻译,现在所有文档都在逐步更新过来

@ikenk ikenk requested review from jasonren0403 and yin1999 August 16, 2024 07:29
@yin1999 yin1999 changed the title On branch fix-typo zh-cn: fix typos in the "Book list page" guide Aug 19, 2024
Copy link
Contributor

@jasonren0403 jasonren0403 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

还有一些问题

@@ -7,28 +7,27 @@ slug: Learn/Server-side/Express_Nodejs/Displaying_data/Book_list_page

## 控制器

书本列表控制器函数,需要获取数据库中所有`Book`对象的列表,然后将这些对象传给模板进行呈现。
书本列表控制器函数,需要获取数据库中所有 `Book` 对象的列表,然后将这些对象传给模板进行呈现。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里还未修改

Copy link
Contributor

@jasonren0403 jasonren0403 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@jasonren0403 jasonren0403 merged commit f4717b9 into mdn:main Aug 21, 2024
14 checks passed
@ikenk ikenk deleted the fix-typo branch August 21, 2024 15:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
l10n-zh Issues related to Chinese content.
Projects
Development

Successfully merging this pull request may close these issues.

3 participants