填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

管理数据

Managing Data

路由的末尾,本应用实现了一个包含两个视图的商品名录:商品列表和商品详情。用户点击清单中的某个商品名称,就会在新视图中看到具有显著 URL(路由)的详情页。

At the end of Routing, the online store application has a product catalog with two views: a product list and product details. Users can click on a product name from the list to see details in a new view, with a distinct URL (route).

在本节中,你将创建购物车。你将:

In this section, you'll create the shopping cart. You'll:

  • 修改商品详情页,让它包含一个 “Buy” 按钮,它会把当前商品添加到由 "购物车服务" 管理的商品列表中。

    Update the product details page to include a "Buy" button, which adds the current product to a list of products managed by a cart service.

  • 添加一个购物车组件,它会显示你添加到购物车中的商品。

    Add a cart component, which displays the items you added to your cart.

  • 添加一个配送组件,它会使用 Angular 的 HttpClient.json 文件中检索配送数据来取得购物车中这些商品的运费。

    Add a shipping component, which retrieves shipping prices for the items in the cart by using Angular's HttpClient to retrieve shipping data from a .json file.

服务

Services

服务是 Angular 应用的重要组成部分。在 Angular 中,服务是一个类的实例,它可以借助 Angular 的依赖注入系统来让应用中的任何一个部件都能使用它。

Services are an integral part of Angular applications. In Angular, a service is an instance of a class that can be made available to any part of your application using Angular's dependency injection system.

服务可以让你在应用的各个部件之间共享数据。对于在线商店,购物车服务就是存放购物车的数据和方法的地方。

Services are the place where you share data between parts of your application. For the online store, the cart service is where you store your cart data and methods.

创建购物车服务

Create the shopping cart service

到目前为止,用户可以查看商品信息、模拟共享,并接收商品变化的通知。但是,无法购买商品。

Up to this point, users can view product information, and simulate sharing and being notified about product changes. They cannot, however, buy products.

在本节中,你将在商品详情页中添加“Buy”按钮。你还可以设置一个购物车服务来存储购物车中商品的相关信息。

In this section, you'll add a "Buy" button the product details page. You'll also set up a cart service to store information about products in the cart.

稍后,在本教程的表单部分,也会从用户的结账页面中访问这个 购物车服务。

Later, in the Forms part of this tutorial, this cart service also will be accessed from the page where the user checks out.

定义购物车服务

Define a cart service

  1. 生成购物车服务。

    Generate a cart service.

    1. 右键单击 app 文件夹,选择 Angular Generator,然后选择 Service。把新的服务命名为 cart

      Right click on the app folder, choose Angular Generator, and choose Service. Name the new service cart.

      import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class CartService { constructor() {} }
      src/app/cart.service.ts
            
            import { Injectable } from '@angular/core';
      
      @Injectable({
        providedIn: 'root'
      })
      export class CartService {
      
        constructor() {}
      
      }
          
    2. 如果生成的 @Injectable() 装饰器中没有包含 { providedIn: 'root' } 语句,那就插入它,如上图所示。

      If the generated @Injectable() decorator does not include the { providedIn: 'root' } statement, then insert it as shown above.

  2. CartService 类中,定义一个 items 属性来把当前商品的列表(数组)存储在购物车中。

    In the CartService class, define an items property to store the list (array) of the current products in the cart.

    export class CartService { items = []; }
          
          export class CartService {
      items = [];
    }
        
  3. 定义把商品添加到购物车、返回购物车商品以及清除购物车商品的方法:

    Define methods to add items to the cart, return cart items, and clear the cart items:

    export class CartService { items = []; addToCart(product) { this.items.push(product); } getItems() { return this.items; } clearCart() { this.items = []; return this.items; } }
          
          export class CartService {
      items = [];
    
      addToCart(product) {
        this.items.push(product);
      }
    
      getItems() {
        return this.items;
      }
    
      clearCart() {
        this.items = [];
        return this.items;
      }
    }
        

使用购物车服务

Use the cart service

在本节中,你将修改商品详情组件以使用这个购物车服务。你可以在商品详情视图中添加一个“Buy”按钮。单击“Buy”按钮后,你将借助购物车服务来把当前商品添加到购物车中。

In this section, you'll update the product details component to use the cart service. You'll add a "Buy" button to the product details view. When the "Buy" button is clicked, you'll use the cart service to add the current product to the cart.

  1. 打开 product-details.component.ts

    Open product-details.component.ts.

  2. 设置该组件,使其能使用这个购物车服务。

    Set up the component to be able to use the cart service.

    1. 导入购物车服务。

      Import the cart service.

      import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { products } from '../products'; import { CartService } from '../cart.service';
      src/app/product-details/product-details.component.ts
            
            import { Component, OnInit } from '@angular/core';
      import { ActivatedRoute } from '@angular/router';
      
      import { products } from '../products';
      import { CartService } from '../cart.service';
          
    2. 注入购物车服务。

      Inject the cart service.

      export class ProductDetailsComponent implements OnInit { constructor( private route: ActivatedRoute, private cartService: CartService ) { } }
            
            export class ProductDetailsComponent implements OnInit {
        constructor(
          private route: ActivatedRoute,
          private cartService: CartService
        ) { }
      }
          
  3. 定义 addToCart() 方法,该方法会当前商品添加到购物车中。

    Define the addToCart() method, which adds the current product to the cart.

    addToCart() 方法:

    The addToCart() method:

    • 收到当前的 product

      Receives the current product

    • 使用购物车服务的 #addToCart() 方法把该商品添加到购物车中

      Uses the cart service's #addToCart() method to add the product the cart

    • 显示一条 "商品已添加到购物车" 的消息

      Displays a message that the product has been added to the cart

    export class ProductDetailsComponent implements OnInit { addToCart(product) { window.alert('Your product has been added to the cart!'); this.cartService.addToCart(product); } }
          
          export class ProductDetailsComponent implements OnInit {
      addToCart(product) {
        window.alert('Your product has been added to the cart!');
        this.cartService.addToCart(product);
      }
    }
        
  4. 修改商品详情模板,让它具有一个“Buy”按钮,用于把当前商品添加到购物车中。

    Update the product details template to have a "Buy" button that adds the current product to the cart.

    1. 打开 product-details.component.html

      Open product-details.component.html.

    2. 添加一个标签为“Buy”的按钮,并把其 click() 事件绑定到 addToCart() 方法:

      Add a button with the label "Buy", and bind the click() event to the addToCart() method:

      <h2>Product Details</h2> <div *ngIf="product"> <h3>{{ product.name }}</h3> <h4>{{ product.price | currency }}</h4> <p>{{ product.description }}</p> <button (click)="addToCart(product)">Buy</button> </div>
      src/app/product-details/product-details.component.html
            
            <h2>Product Details</h2>
      
      <div *ngIf="product">
        <h3>{{ product.name }}</h3>
        <h4>{{ product.price | currency }}</h4>
        <p>{{ product.description }}</p>
      
        <button (click)="addToCart(product)">Buy</button>
      </div>
          
  5. 要查看新的“Buy”按钮,请刷新应用并单击商品名称以显示其详细信息。

    To see the new "Buy" button, refresh the application and click on a product's name to display its details.

    Display details for selected product with a Buy button
  6. 点击“Buy”按钮。该商品已添加到了购物车中存储的商品列表中,并显示一条消息。

    Click the "Buy" button. The product is added to the stored list of items in the cart, and a message is displayed.

    Display details for selected product with a Buy button

创建购物车页面

Create the cart page

此时,用户可以通过点击“Buy”来把商品放入购物车,但他们还看不到购物车。

At this point, users can put items in the cart by clicking "Buy", but they can't yet see their cart.

我们将分两步来创建购物车页面:

We'll create the cart page in two steps:

  1. 创建一个购物车组件并设置到这个新组件的路由。此时,购物车页面只会显示默认文本。

    Create a cart component and set up routing to the new component. At this point, the cart page will only have default text.

  2. 显示购物车商品

    Display the cart items.

设置该组件

Set up the component

要创建购物车页面,首先要执行与创建商品详情组件相同的步骤,并为这个新组件设置路由。

To create the cart page, you begin by following the same steps you did to create the product details component and to set up routing for the new component.

  1. 生成一个名叫 cart 的购物车组件。

    Generate a cart component, named cart.

    提示:在文件列表框中,右键单击 app 文件夹,选择 Angular GeneratorComponent

    Reminder: In the file list, right-click the app folder, choose Angular Generator and Component.

    import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-cart', templateUrl: './cart.component.html', styleUrls: ['./cart.component.css'] }) export class CartComponent implements OnInit { constructor() { } ngOnInit() { } }
    src/app/cart/cart.component.ts
          
          
    1. import { Component, OnInit } from '@angular/core';
    2.  
    3. @Component({
    4. selector: 'app-cart',
    5. templateUrl: './cart.component.html',
    6. styleUrls: ['./cart.component.css']
    7. })
    8. export class CartComponent implements OnInit {
    9.  
    10. constructor() { }
    11.  
    12. ngOnInit() {
    13. }
    14.  
    15. }
  2. 为购物车组件添加路由(URL 模式)。

    Add routing (a URL pattern) for the cart component.

    提示:打开 app.module.ts,为组件 CartComponent 添加一个路由,其路由为 cart

    Reminder: Open app.module.ts and add a route for the component CartComponent, with a path of cart:

    @NgModule({ imports: [ BrowserModule, ReactiveFormsModule, RouterModule.forRoot([ { path: '', component: ProductListComponent }, { path: 'products/:productId', component: ProductDetailsComponent }, { path: 'cart', component: CartComponent }, ]) ],
    src/app/app.module.ts
          
          @NgModule({
      imports: [
        BrowserModule,
        ReactiveFormsModule,
        RouterModule.forRoot([
          { path: '', component: ProductListComponent },
          { path: 'products/:productId', component: ProductDetailsComponent },
          { path: 'cart', component: CartComponent },
        ])
      ],
        
  3. 要查看新的购物车组件,请点击“Checkout”按钮。你会看到默认文本“cart works!”,该 URL 的格式为 https://getting-started.stackblitz.io/cart,其中的 getting-started.stackblitz.io 部分可能与你的 StackBlitz 项目不同。

    To see the new cart component, click the "Checkout" button. You can see the "cart works!" default text, and the URL has the pattern https://getting-started.stackblitz.io/cart, where getting-started.stackblitz.io may be different for your StackBlitz project.

    (注意:我们在顶栏组件中提供的“Checkout”按钮已经配置了指向 /cartrouterLink。)

    (Note: The "Checkout" button that we provided in the top-bar component was already configured with a routerLink for /cart.)

    Display cart page before customizing

显示购物车商品

Display the cart items

服务可用于跨组件共享数据:

Services can be used to share data across components:

  • 商品详情组件已经使用了购物车服务( CartService )来把商品添加到购物车中。

    The product details component already uses the cart service (CartService) to add products to the cart.

  • 在本节中,你将修改购物车组件以使用购物车服务来显示购物车中的商品。

    In this section, you'll update the cart component to use the cart service to display the products in the cart.

  1. 打开 cart.component.ts

    Open cart.component.ts.

  2. 设置该组件是为了让它能够使用这个购物车服务。(这与你在前面设置商品详情组件以使用购物车服务的方式是一样的。)

    Set up the component to be able to use the cart service. (This is the same way you set up the product details component to use the cart service, above.)

    1. cart.service.ts 文件中导入 CartService

      Import the CartService from the cart.service.ts file.

      import { Component } from '@angular/core'; import { CartService } from '../cart.service';
      src/app/cart/cart.component.ts
            
            import { Component } from '@angular/core';
      import { CartService } from '../cart.service';
          
    2. 注入 CartService 来管理购物车信息。

      Inject the CartService to manage cart information.

      export class CartComponent { constructor( private cartService: CartService ) { } }
            
            export class CartComponent {
      
        constructor(
          private cartService: CartService
        ) { }
      }
          
  3. 定义 items 属性,以便把商品存放在购物车中。

    Define the items property to store the products in the cart.

    export class CartComponent { items; constructor( private cartService: CartService ) { } }
          
          export class CartComponent {
      items;
    
      constructor(
        private cartService: CartService
      ) { }
    }
        
  4. 使用购物车服务的 getItems() 方法设置这些商品。(你在生成 cart.service.ts定义过这个方法。)

    Set the items using the cart service's getItems() method. (You defined this method when you generated cart.service.ts.)

    所生成的 CartComponent 类是这样的:

    The resulting CartComponent class should look like this:

    export class CartComponent { items; constructor( private cartService: CartService ) { this.items = this.cartService.getItems(); } }
          
          export class CartComponent {
      items;
    
      constructor(
        private cartService: CartService
      ) {
        this.items = this.cartService.getItems();
      }
    }
        
  5. 修改模板,加上标题(“Cart”),用带有 *ngFor<div> 来显示每个购物车商品的名字和价格。

    Update the template with a header ("Cart"), and use a <div> with an *ngFor to display each of the cart items with its name and price.

    生成的 CartComponent 模板如下:

    The resulting CartComponent template should look like this:

    <h3>Cart</h3> <div class="cart-item" *ngFor="let item of items"> <span>{{ item.name }}</span> <span>{{ item.price | currency }}</span> </div>
    src/app/cart/cart.component.html
          
          <h3>Cart</h3>
    
    <div class="cart-item" *ngFor="let item of items">
      <span>{{ item.name }}</span>
      <span>{{ item.price | currency }}</span>
    </div>
        
  6. 测试你的购物车组件。

    Test your cart component.

    1. 点击“My Store”,进入商品列表页面。

      Click on "My Store" to go to the product list page.

    2. 单击商品名称以显示其详细信息。

      Click on a product name to display its details.

    3. 点击“Buy”,即可将商品添加到购物车。

      Click "Buy" to add the product to the cart.

    4. 点击“Checkout”查看购物车。

      Click "Checkout" to see the cart.

    5. 要添加其它商品,请点击“My Store”返回商品列表。重复上述步骤。

      To add another product, click "My Store" to return to the product list. Repeat the steps above.

    Cart page with products added

StackBlitz 提示:只要预览刷新,就会清除购物车。如果你对该应用进行了更改,页面就会刷新,你需要重新购买商品来填充购物车。

StackBlitz tip: Any time the preview refreshes, the cart is cleared. If you make changes to the app, the page refreshes, and you'll need to buy products again to populate the cart.

要了解关于服务的更多信息,请参阅“服务和依赖注入简介”

Learn more: See Introduction to Services and Dependency Injection for more information about services.

检索运费价格

Retrieve shipping prices

从服务器返回的数据通常采用流的形式。流是很有用的,因为它们可以很容易地转换返回的数据,也可以修改请求数据的方式。Angular 的 HTTP 客户端( HttpClient )是一种内置的方式,可以从外部 API 中获取数据,并以流的形式提供给你的应用。

Data returned from servers often takes the form of a stream. Streams are useful because they make it easy to transform the data that is returned, and to make modifications to the way data is requested. The Angular HTTP client (HttpClient) is a built-in way to fetch data from external APIs and provide them to your application as a stream.

在本节中,你将使用 HTTP 客户端从外部文件中检索运费。

In this section, you'll use the HTTP client to retrieve shipping prices from an external file.

预定义的配送数据

Predefined shipping data

为了满足本“入门指南”的需求,我们在 assets/shipping.json 中提供了配送数据。你可以利用这些数据为购物车中的商品添加运费。

For the purpose of this Getting Started guide, we have provided shipping data in assets/shipping.json. You'll use this data to add shipping prices for items in the cart.

[ { "type": "Overnight", "price": 25.99 }, { "type": "2-Day", "price": 9.99 }, { "type": "Postal", "price": 2.99 } ]
src/assets/shipping.json
      
      
  1. [
  2. {
  3. "type": "Overnight",
  4. "price": 25.99
  5. },
  6. {
  7. "type": "2-Day",
  8. "price": 9.99
  9. },
  10. {
  11. "type": "Postal",
  12. "price": 2.99
  13. }
  14. ]

为应用启用 HttpClient

Enable HttpClient for app

在使用 Angular 的 HTTP 客户端之前,你必须先设置你的应用来使用 HttpClientModule

Before you can use Angular's HTTP client, you must set up your app to use HttpClientModule.

Angular 的 HttpClientModule 中注册了在整个应用中使用 HttpClient 服务的单个实例所需的服务提供商。你可以在服务中注入 HttpClient 服务来获取数据并与外部 API 和资源进行交互。

Angular's HttpClientModule registers the providers needed to use a single instance of the HttpClient service throughout your app. The HttpClient service is what you inject into your services to fetch data and interact with external APIs and resources.

  1. 打开 app.module.ts

    Open app.module.ts.

    该文件包含可供整个应用使用的导入对象和功能。

    This file contains imports and functionality that is available to the entire app.

  2. @angular/common/http 包中导入 HttpClientModule

    Import HttpClientModule from the @angular/common/http package.

    import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { RouterModule } from '@angular/router'; import { HttpClientModule } from '@angular/common/http';
    src/app/app.module.ts
          
          import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    import { RouterModule } from '@angular/router';
    import { HttpClientModule } from '@angular/common/http';
        
  3. HttpClientModule 添加到应用模块(@NgModule)的 imports 数组中。

    Add HttpClientModule to the imports array of the app module (@NgModule).

    这会在全局注册 Angular 的 HttpClient 提供商。

    This registers Angular's HttpClient providers globally.

    import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { RouterModule } from '@angular/router'; import { HttpClientModule } from '@angular/common/http'; import { ReactiveFormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { TopBarComponent } from './top-bar/top-bar.component'; import { ProductListComponent } from './product-list/product-list.component'; import { ProductAlertsComponent } from './product-alerts/product-alerts.component'; import { ProductDetailsComponent } from './product-details/product-details.component'; @NgModule({ imports: [ BrowserModule, HttpClientModule, ReactiveFormsModule, RouterModule.forRoot([ { path: '', component: ProductListComponent }, { path: 'products/:productId', component: ProductDetailsComponent }, { path: 'cart', component: CartComponent }, ]) ], declarations: [ AppComponent, TopBarComponent, ProductListComponent, ProductAlertsComponent, ProductDetailsComponent, CartComponent, ], bootstrap: [ AppComponent ] }) export class AppModule { }
          
          
    1. import { NgModule } from '@angular/core';
    2. import { BrowserModule } from '@angular/platform-browser';
    3. import { RouterModule } from '@angular/router';
    4. import { HttpClientModule } from '@angular/common/http';
    5. import { ReactiveFormsModule } from '@angular/forms';
    6.  
    7. import { AppComponent } from './app.component';
    8. import { TopBarComponent } from './top-bar/top-bar.component';
    9. import { ProductListComponent } from './product-list/product-list.component';
    10. import { ProductAlertsComponent } from './product-alerts/product-alerts.component';
    11. import { ProductDetailsComponent } from './product-details/product-details.component';
    12.  
    13. @NgModule({
    14. imports: [
    15. BrowserModule,
    16. HttpClientModule,
    17. ReactiveFormsModule,
    18. RouterModule.forRoot([
    19. { path: '', component: ProductListComponent },
    20. { path: 'products/:productId', component: ProductDetailsComponent },
    21. { path: 'cart', component: CartComponent },
    22. ])
    23. ],
    24. declarations: [
    25. AppComponent,
    26. TopBarComponent,
    27. ProductListComponent,
    28. ProductAlertsComponent,
    29. ProductDetailsComponent,
    30. CartComponent,
    31. ],
    32. bootstrap: [
    33. AppComponent
    34. ]
    35. })
    36. export class AppModule { }

为购物车服务启用 HttpClient

Enable HttpClient for cart service

  1. 打开 cart.service.ts

    Open cart.service.ts.

  2. @angular/common/http 包中导入 HttpClient

    Import HttpClient from the @angular/common/http package.

    import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http';
    src/app/cart.service.ts
          
          import { Injectable } from '@angular/core';
    
    import { HttpClient } from '@angular/common/http';
        
  3. HttpClient 注入到 CartService 组件类的构造函数中:

    Inject HttpClient into the constructor of the CartService component class:

    export class CartService { items = []; constructor( private http: HttpClient ) {} }
          
          export class CartService {
      items = [];
    
      constructor(
        private http: HttpClient
      ) {}
    }
        

定义 get() 方法

Define the get() method

如你所见,多个组件可以使用同一个服务。在这个教程的后半部分,商品配送组件将使用该购物车服务从 shipping.json 文件中借助 HTTP 检索配送数据。在这里你要定义很快就要用到的 get() 方法。

As you've seen, multiple components can leverage the same service. Later in this tutorial, the shipping component will use the cart service to retrieve shipping data via HTTP from the shipping.json file. Here you'll define the get() method that will be used.

  1. 继续在 cart.service.ts 中工作。

    Continue working in cart.service.ts.

  2. clearCart() 方法下面,定义一个新的 getShippingPrices() 方法,该方法使用 HttpClient#get() 方法检索配送数据(类型和价格)。

    Below the clearCart() method, define a new getShippingPrices() method that uses the HttpClient#get() method to retrieve the shipping data (types and prices).

    export class CartService { items = []; constructor( private http: HttpClient ) {} addToCart(product) { this.items.push(product); } getItems() { return this.items; } clearCart() { this.items = []; return this.items; } getShippingPrices() { return this.http.get('/assets/shipping.json'); } }
    src/app/cart.service.ts
          
          
    1. export class CartService {
    2. items = [];
    3.  
    4. constructor(
    5. private http: HttpClient
    6. ) {}
    7.  
    8. addToCart(product) {
    9. this.items.push(product);
    10. }
    11.  
    12. getItems() {
    13. return this.items;
    14. }
    15.  
    16. clearCart() {
    17. this.items = [];
    18. return this.items;
    19. }
    20.  
    21. getShippingPrices() {
    22. return this.http.get('/assets/shipping.json');
    23. }
    24. }

要了解关于 Angular HttpClient 的更多信息,请参阅HttpClient 指南

Learn more: See the HttpClient guide for more information about Angular's HttpClient.

定义配送页面

Define the shipping page

现在你的应用已经可以检索配送数据了,你还要创建一个配送组件和相关的模板。

Now that your app can retrieve shipping data, you'll create a shipping component and associated template.

  1. 生成一个名为 shipping 的新组件。

    Generate a new component named shipping.

    提示:在文件列表框中,右键单击 app 文件夹,选择 Angular GeneratorComponent

    Reminder: In the file list, right-click the app folder, choose Angular Generator and Component.

    import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-shipping', templateUrl: './shipping.component.html', styleUrls: ['./shipping.component.css'] }) export class ShippingComponent implements OnInit { constructor() { } ngOnInit() { } }
    src/app/shipping/shipping.component.ts
          
          
    1. import { Component, OnInit } from '@angular/core';
    2.  
    3. @Component({
    4. selector: 'app-shipping',
    5. templateUrl: './shipping.component.html',
    6. styleUrls: ['./shipping.component.css']
    7. })
    8. export class ShippingComponent implements OnInit {
    9.  
    10. constructor() { }
    11.  
    12. ngOnInit() {
    13. }
    14.  
    15. }
  2. app.module.ts 中,添加一个配送路由。其 pathshipping,其 component 为 ShippingComponent

    In app.module.ts, add a route for shipping. Specify a path of shipping and a component of ShippingComponent.

    @NgModule({ imports: [ BrowserModule, HttpClientModule, ReactiveFormsModule, RouterModule.forRoot([ { path: '', component: ProductListComponent }, { path: 'products/:productId', component: ProductDetailsComponent }, { path: 'cart', component: CartComponent }, { path: 'shipping', component: ShippingComponent }, ]) ], declarations: [ AppComponent, TopBarComponent, ProductListComponent, ProductAlertsComponent, ProductDetailsComponent, CartComponent, ShippingComponent ], bootstrap: [ AppComponent ] }) export class AppModule { }
    src/app/app.module.ts
          
          
    1. @NgModule({
    2. imports: [
    3. BrowserModule,
    4. HttpClientModule,
    5. ReactiveFormsModule,
    6. RouterModule.forRoot([
    7. { path: '', component: ProductListComponent },
    8. { path: 'products/:productId', component: ProductDetailsComponent },
    9. { path: 'cart', component: CartComponent },
    10. { path: 'shipping', component: ShippingComponent },
    11. ])
    12. ],
    13. declarations: [
    14. AppComponent,
    15. TopBarComponent,
    16. ProductListComponent,
    17. ProductAlertsComponent,
    18. ProductDetailsComponent,
    19. CartComponent,
    20. ShippingComponent
    21. ],
    22. bootstrap: [
    23. AppComponent
    24. ]
    25. })
    26. export class AppModule { }

    新的配送组件尚未挂钩到任何其它组件,但你可以通过输入其路由特有的 URL 在预览窗格中看到它。该 URL 具有以下模式:https://getting-started.stackblitz.io/shipping,其中的 gets-started.stackblitz.io 部分可能与你的 StackBlitz 项目不同。

    The new shipping component isn't hooked into any other component yet, but you can see it in the preview pane by entering the URL specified by its route. The URL has the pattern: https://getting-started.stackblitz.io/shipping where the getting-started.stackblitz.io part may be different for your StackBlitz project.

  3. 修改配送组件,让它利用购物车服务从 shipping.json 文件中通过 HTTP 检索配送数据。

    Modify the shipping component so it uses the cart service to retrieve shipping data via HTTP from the shipping.json file.

    1. 导入购物车服务。

      Import the cart service.

      import { Component } from '@angular/core'; import { CartService } from '../cart.service';
      src/app/shipping/shipping.component.ts
            
            import { Component } from '@angular/core';
      
      import { CartService } from '../cart.service';
          
    2. 定义 shippingCosts 属性。

      Define a shippingCosts property.

      export class ShippingComponent { shippingCosts; }
            
            export class ShippingComponent {
        shippingCosts;
      }
          
    3. 把购物车服务注入到 ShippingComponent 类中:

      Inject the cart service into the ShippingComponent class:

      constructor( private cartService: CartService ) { }
            
            constructor(
        private cartService: CartService
      ) {
      }
          
    4. 利用购物车服务的 getShippingPrices() 方法设置 shippingCosts 属性。

      Set the shippingCosts property using the getShippingPrices() method from cart service.

      export class ShippingComponent { shippingCosts; constructor( private cartService: CartService ) { this.shippingCosts = this.cartService.getShippingPrices(); } }
            
            export class ShippingComponent {
        shippingCosts;
      
        constructor(
          private cartService: CartService
        ) {
          this.shippingCosts = this.cartService.getShippingPrices();
        }
      }
          
  4. 利用 async 管道修改配送组件的模板,以显示配送类型和价格:

    Update the shipping component's template to display the shipping types and prices using async pipe:

    <h3>Shipping Prices</h3> <div class="shipping-item" *ngFor="let shipping of shippingCosts | async"> <span>{{ shipping.type }}</span> <span>{{ shipping.price | currency }}</span> </div>
    src/app/shipping/shipping.component.html
          
          <h3>Shipping Prices</h3>
    
    <div class="shipping-item" *ngFor="let shipping of shippingCosts | async">
      <span>{{ shipping.type }}</span>
      <span>{{ shipping.price | currency }}</span>
    </div>
        
  5. 在购物车页面中添加一个到配送页面的链接:

    Add a link from the cart page to the shipping page:

    <h3>Cart</h3> <p> <a routerLink="/shipping">Shipping Prices</a> </p> <div class="cart-item" *ngFor="let item of items"> <span>{{ item.name }}</span> <span>{{ item.price | currency }}</span> </div>
    src/app/cart/cart.component.html
          
          <h3>Cart</h3>
    
    <p>
      <a routerLink="/shipping">Shipping Prices</a>
    </p>
    
    <div class="cart-item" *ngFor="let item of items">
      <span>{{ item.name }}</span>
      <span>{{ item.price | currency }}</span>
    </div>
        
  6. 测试这个运费价格功能:

    Test your shipping prices feature:

    点击“Checkout”按钮,查看更新后的购物车。(注意,修改应用会导致预览窗格刷新,这会清空购物车。)

    Click on the "Checkout" button to see the updated cart. (Remember that changing the app causes the preview to refresh, which empties the cart.)

    Cart with link to shipping prices

    点击此链接可以导航到运费页。

    Click on the link to navigate to the shipping prices.

    Display shipping prices

下一步

Next steps

恭喜!你有一个带有商品名录和购物车的在线商店应用了,而且你还可以查询并显示运费。

Congratulations! You have an online store application with a product catalog and shopping cart. You also have the ability to look up and display shipping prices.

要继续探索 Angular,请选择下列选项之一:

To continue exploring Angular, choose either of the following options: