fix: 翻译 routing
This commit is contained in:
parent
597d5a43a4
commit
b6d8478658
@ -1,126 +1,240 @@
|
||||
# Routing
|
||||
|
||||
# 路由
|
||||
|
||||
|
||||
At the end of [Your First App](getting-started "Getting Started: Your First App"), the online store application has a basic product catalog.
|
||||
The app doesn't have any variable states or navigation.
|
||||
There is one URL, and that URL always displays the "My Store" page with a list of products and their descriptions.
|
||||
|
||||
在[你的第一个应用](getting-started "入门:你的第一个应用")结束时,这个在线商店应用会有一个基本的产品名录。该应用还没有任何可变的状态或导航。它只有一个 URL,该 URL 总是会显示“我的商店”页面,其中是产品列表及其描述。
|
||||
|
||||
|
||||
In this section, you'll extend the app to display full product details in separate pages, with their own URLs.
|
||||
|
||||
在本节中,你将扩展本应用以便在单独的页面中显示完整的产品详情,并让它使用自己的 URL。
|
||||
|
||||
|
||||
To do this, you'll use the Angular *router*.
|
||||
The Angular [router](guide/glossary#router "router definition") enables you to show different components and data to the user based on where the user is in the application.
|
||||
The router enables navigation from one view to the next as users perform application tasks:
|
||||
|
||||
为此,你要使用 Angular 的*路由器*。借助 Angular [路由器](guide/glossary#router "router definition"),你可以根据用户在应用中的位置向用户显示不同的组件和数据。当用户执行应用任务时,路由器可以从一个视图导航到另一个视图。
|
||||
|
||||
|
||||
* Enter a URL in the address bar, and the browser navigates to a corresponding page.
|
||||
|
||||
在地址栏中输入一个 URL,浏览器就会导航到相应的页面。
|
||||
|
||||
* Click links on the page, and the browser navigates to a new page.
|
||||
|
||||
点击页面上的链接,浏览器会导航到新页面。
|
||||
|
||||
* Click the browser's back and forward buttons, and the browser navigates backward and forward through the history of pages you've seen.
|
||||
|
||||
点击浏览器的后退和前进按钮,浏览器会在你看过的页面历史中前后导航。
|
||||
|
||||
|
||||
## Registering a route
|
||||
|
||||
## 注册路由
|
||||
|
||||
|
||||
The app is already set up to use the Angular router and to use routing to navigate to the product list component you modified earlier. Let's define a route to show individual product details.
|
||||
|
||||
该应用已经设置为使用 Angular 路由器,并通过路由导航到之前修改过的产品列表组件。让我们来定义一个可以显示产品详情的路由。
|
||||
|
||||
|
||||
1. Generate a new component for product details. Give the component the name `product-details`.
|
||||
|
||||
为产品详情生成一个新组件。把组件命名为 `product-details`。
|
||||
|
||||
|
||||
Reminder: In the file list, right-click the `app` folder, choose `Angular Generator` and `Component`.
|
||||
|
||||
提示:在文件列表框中,右键单击 `app` 文件夹,选择 `Angular Generator` 和 `Component`。
|
||||
|
||||
|
||||
1. In `app.module.ts`, add a route for product details, with a `path` of `products/:productId` and `ProductDetailsComponent` for the `component`.
|
||||
|
||||
<code-example header="src/app/app.module.ts" path="getting-started/src/app/app.module.ts" region="product-details-route">
|
||||
</code-example>
|
||||
|
||||
A route associates one or more URL paths with a component.
|
||||
在 `app.module.ts` 中,添加一个产品详情路由,该路由的 `path` 是 `products/:productId`,`component` 是 `ProductDetailsComponent`。
|
||||
|
||||
|
||||
<code-example header="src/app/app.module.ts" path="getting-started/src/app/app.module.ts" region="product-details-route">
|
||||
</code-example>
|
||||
|
||||
A route associates one or more URL paths with a component.
|
||||
|
||||
路由会将一个或多个 URL 路径与一个组件关联起来。
|
||||
|
||||
|
||||
1. Define a link using the `RouterLink` directive. The `routerLink` defines how the user navigates to the route (or URL) declaratively
|
||||
in the component template.
|
||||
in the component template.
|
||||
|
||||
We want the user to click a product name to display the details for that product.
|
||||
使用 `RouterLink` 指令定义一个链接。`routerLink` 定义了如何在组件模板中声明式的导航到指定路由(或 URL)。
|
||||
|
||||
1. Open `product-list.component.html`.
|
||||
|
||||
1. Update the `*ngFor` directive to assign each index in the `products` array to the `productId` variable when iterating over the list.
|
||||
|
||||
1. Modify the product name anchor to include a `routerLink`.
|
||||
We want the user to click a product name to display the details for that product.
|
||||
|
||||
<code-example header="src/app/product-list/product-list.component.html" path="getting-started/src/app/product-list/product-list.component.html" region="router-link">
|
||||
</code-example>
|
||||
我们希望用户点击产品名称来显示该产品的详情。
|
||||
|
||||
<!--
|
||||
To do: I see a comment line with ellipses between the closing of h3 and div. It's an interesting way to show that we've clipped out some code. Should we use this elsewhere?
|
||||
-->
|
||||
|
||||
The RouterLink directive gives the router control over the anchor element. In this case, the route (URL) contains one fixed segment (`/products`) and the final segment is variable, inserting the id property of the current product. For example, the URL for a product with an `id` of 1 will be similar to `https://getting-started-myfork.stackblitz.io/products/1`.
|
||||
1. Open `product-list.component.html`.
|
||||
|
||||
打开 `product-list.component.html`。
|
||||
|
||||
|
||||
1. Update the `*ngFor` directive to assign each index in the `products` array to the `productId` variable when iterating over the list.
|
||||
|
||||
修改 `*ngFor` 指令,在遍历列表的过程中把 `products` 数组中的每个索引赋值给 `productId` 变量。
|
||||
|
||||
|
||||
1. Modify the product name anchor to include a `routerLink`.
|
||||
|
||||
修改产品名称的链接,使其包含 `routerLink`。
|
||||
|
||||
|
||||
<code-example header="src/app/product-list/product-list.component.html" path="getting-started/src/app/product-list/product-list.component.html" region="router-link">
|
||||
</code-example>
|
||||
|
||||
<!--
|
||||
To do: I see a comment line with ellipses between the closing of h3 and div. It's an interesting way to show that we've clipped out some code. Should we use this elsewhere?
|
||||
-->
|
||||
|
||||
The RouterLink directive gives the router control over the anchor element. In this case, the route (URL) contains one fixed segment (`/products`) and the final segment is variable, inserting the id property of the current product. For example, the URL for a product with an `id` of 1 will be similar to `https://getting-started-myfork.stackblitz.io/products/1`.
|
||||
|
||||
RouterLink 指令让路由器控制了一个链接元素。在这种情况下,路由(URL)包含一个固定的区段( `/products` ),但其最后一个区段是变量,要插入当前产品的 id 属性。例如,`id` 为 1 的产品的 URL 类似于 `https://getting-started-myfork.stackblitz.io/products/1`。
|
||||
|
||||
|
||||
1. Test the router by clicking a product name. The app displays the product details component, which currently always says "product-details works!" (We'll fix this in the next section.)
|
||||
|
||||
Notice that the URL in the preview window changes. The final segment is `products/1`.
|
||||
通过单击产品名称来测试路由器。该应用会显示产品详情组件,该组件目前始终显示 “product-details works!” (我们将在下一节修复此问题。)
|
||||
|
||||
<figure>
|
||||
<img src="generated/images/guide/getting-started/product-details-works.png" alt="Product details page with updated URL">
|
||||
</figure>
|
||||
|
||||
|
||||
Notice that the URL in the preview window changes. The final segment is `products/1`.
|
||||
|
||||
注意,预览窗口中的 URL 会发生变化。其最后一段是 `products/1`。
|
||||
|
||||
|
||||
<figure>
|
||||
<img src="generated/images/guide/getting-started/product-details-works.png" alt="Product details page with updated URL">
|
||||
</figure>
|
||||
|
||||
## Using route information
|
||||
|
||||
## 使用路由信息
|
||||
|
||||
|
||||
The product details component handles the display of each product. The Angular Router displays components based on the browser's URL and your defined routes. You'll use the Angular Router to combine the `products` data and route information to display the specific details for each product.
|
||||
|
||||
产品详情组件负责处理每个产品的显示。Angular 的路由器会根据浏览器的 URL 和你定义的这些路由来决定如何显示组件。你可以通过 Angular 的路由器来组合使用 `products` 数据和路由信息,以显示每个产品的详情。
|
||||
|
||||
|
||||
1. Open `product-details.component.ts`
|
||||
|
||||
打开 `product-details.component.ts` 文件
|
||||
|
||||
|
||||
1. Arrange to use product data from an external file.
|
||||
|
||||
1. Import `ActivatedRoute` from the `@angular/router` package, and the `products` array from `../products`.
|
||||
改用外部文件中的产品数据。
|
||||
|
||||
<code-example header="src/app/product-details/product-details.component.ts" path="getting-started/src/app/product-details/product-details.component.1.ts" region="imports">
|
||||
</code-example>
|
||||
|
||||
1. Define the `product` property and inject the `ActivatedRoute` into the constructor.
|
||||
1. Import `ActivatedRoute` from the `@angular/router` package, and the `products` array from `../products`.
|
||||
|
||||
<code-example header="src/app/product-details/product-details.component.ts" path="getting-started/src/app/product-details/product-details.component.1.ts" region="props-methods">
|
||||
</code-example>
|
||||
从 `@angular/router` 包导入 `ActivatedRoute` ,从 `../products` 文件导入 `products` 数组。
|
||||
|
||||
The `ActivatedRoute` is specific to each routed component loaded by the Angular Router. It contains information about the
|
||||
route, its parameters, and additional data associated with the route.
|
||||
|
||||
<!--
|
||||
To do: This is the first time we inject anything into a component. Should we mention it here? There's also a comment about maybe explaining it a bit in the services section (in data.md).
|
||||
-->
|
||||
<code-example header="src/app/product-details/product-details.component.ts" path="getting-started/src/app/product-details/product-details.component.1.ts" region="imports">
|
||||
</code-example>
|
||||
|
||||
1. In the `ngOnInit()` method, _subscribe_ to route params and fetch the product based on the `productId`.
|
||||
1. Define the `product` property and inject the `ActivatedRoute` into the constructor.
|
||||
|
||||
<code-example path="getting-started/src/app/product-details/product-details.component.1.ts" region="get-product">
|
||||
</code-example>
|
||||
定义 `product` 属性,并把 `ActivatedRoute` 注入到构造函数中。
|
||||
|
||||
|
||||
<code-example header="src/app/product-details/product-details.component.ts" path="getting-started/src/app/product-details/product-details.component.1.ts" region="props-methods">
|
||||
</code-example>
|
||||
|
||||
The `ActivatedRoute` is specific to each routed component loaded by the Angular Router. It contains information about the
|
||||
route, its parameters, and additional data associated with the route.
|
||||
|
||||
`ActivatedRoute` 专门用于由 Angular 路由器加载的每个路由组件。它包含关于该路由,路由参数以及与该路由关联的其它数据的信息。
|
||||
|
||||
|
||||
<!--
|
||||
To do: This is the first time we inject anything into a component. Should we mention it here? There's also a comment about maybe explaining it a bit in the services section (in data.md).
|
||||
-->
|
||||
|
||||
1. In the `ngOnInit()` method, *subscribe* to route params and fetch the product based on the `productId`.
|
||||
|
||||
在 `ngOnInit()` 方法中, *订阅(subscribe)*路由参数并根据其 `productId` 获取产品信息。
|
||||
|
||||
|
||||
<code-example path="getting-started/src/app/product-details/product-details.component.1.ts" region="get-product">
|
||||
</code-example>
|
||||
|
||||
The route parameters correspond to the path variables defined in the route. The `productId` is provided from
|
||||
the URL that was matched to the route. You use the `productId` to display the details for each unique product.
|
||||
|
||||
这个路由参数对应于路由中定义的路径变量。`productId` 是从与该路由匹配的 URL 中提供的。你可以通过 `productId` 来显示每个单独产品的详细信息。
|
||||
|
||||
The route parameters correspond to the path variables defined in the route. The `productId` is provided from
|
||||
the URL that was matched to the route. You use the `productId` to display the details for each unique product.
|
||||
|
||||
1. Update the template to display product details information inside an `*ngIf`.
|
||||
|
||||
<code-example header="src/app/product-details/product-details.component.html" path="getting-started/src/app/product-details/product-details.component.html" region="details">
|
||||
</code-example>
|
||||
修改模板,在 `*ngIf` 中显示产品详情。
|
||||
|
||||
|
||||
<code-example header="src/app/product-details/product-details.component.html" path="getting-started/src/app/product-details/product-details.component.html" region="details">
|
||||
</code-example>
|
||||
|
||||
Now, when the user clicks on a name in the product list, the router navigates you to the distinct URL for the product, swaps out the product list component for the product details component, and displays the product details.
|
||||
|
||||
现在,当用户点击产品列表中的某个名字时,路由器就会导航到产品的不同网址,用产品详情组件代替产品列表组件,并显示产品详情。
|
||||
|
||||
|
||||
<figure>
|
||||
<img src="generated/images/guide/getting-started/product-details-routed.png" alt="Product details page with updated URL and full details displayed">
|
||||
</figure>
|
||||
|
||||
|
||||
|
||||
<div class="alert is-helpful">
|
||||
|
||||
Learn more: See [Routing & Navigation](guide/router "Routing & Navigation") for more information about the Angular router.
|
||||
|
||||
</div>
|
||||
要了解关于 Angular 路由器的更多信息,请参阅[路由和导航](guide/router "路由与导航")。
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
## Next steps
|
||||
|
||||
## 下一步
|
||||
|
||||
|
||||
Congratulations! You have integrated routing into your online store.
|
||||
|
||||
恭喜!你已经把路由集成到你的在线商店了。
|
||||
|
||||
|
||||
* Products are linked from the product list page to individual products
|
||||
|
||||
从产品列表页面链接到了单个产品
|
||||
|
||||
* Users can click on a product name from the list to see details in a new view, with a distinct URL (route)
|
||||
|
||||
用户可以点击列表中的某个产品名称来在新视图中查看其详细信息,并带有独特的 URL(路由)
|
||||
|
||||
|
||||
To continue exploring Angular, choose either of the following options:
|
||||
|
||||
要继续探索 Angular,请选择以下选项之一:
|
||||
|
||||
|
||||
* [Continue to the "Managing Data" section](getting-started/data "Getting Started: Managing Data") to add the shopping cart feature, using a service to manage the cart data and using HTTP to retrieve external data for shipping prices.
|
||||
|
||||
[继续浏览“管理数据”部分](getting-started/data "入门:管理数据") ,以添加购物车功能,使用服务来管理购物车数据,并通过 HTTP 检索出货价格的外部数据。
|
||||
|
||||
* [Skip ahead to the Deployment section](getting-started/deployment "Getting Started: Deployment") to deploy your app to Firebase or move to local development.
|
||||
|
||||
[跳到部署部分](getting-started/deployment "入门:部署"),把你的应用部署到 Firebase 或转成本地开发。
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user