Angular 2 數(shù)據(jù)綁定

2022-06-07 14:58 更新

描述

數(shù)據(jù)綁定是模型和視圖組件之間的數(shù)據(jù)同步。 要顯示組件屬性,可以將其名稱放在視圖模板中,用雙花括號(hào)括起來(lái)。 雙向數(shù)據(jù)綁定使用指令 ngModel 合并單個(gè)符號(hào)中的屬性和事件綁定。

例子

下面的例子描述了在Angular 2中使用數(shù)據(jù)綁定:

<!DOCTYPE html>
<html>
   <head>
      <title>Data Binding</title>
      <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/es6-shim.min.js"></script>
      <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/system-polyfills.js"></script>
      <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/angular2-polyfills.js"></script>
      <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/system.js"></script>
      <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/typescript.js"></script>
      <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/Rx.js"></script>
      <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/angular2.dev.js"></script>
      <script>
         System.config({
           transpiler: 'typescript',
           typescriptOptions: { emitDecoratorMetadata: true },
           packages: {'app': {defaultExtension: 'ts'}}
         });
         System.import('/angular2/src/app/data_binding_main')
               .then(null, console.error.bind(console));
      </script>
   </head>
   <body>
      <my-app>Loading...</my-app>
   </body>
</html>

上述代碼包括以下配置選項(xiàng):

  • 您可以使用 typescript 版本配置 index.html 文件。 在使用 transpiler 選項(xiàng)運(yùn)行應(yīng)用程序之前,SystemJS將TypeScript轉(zhuǎn)換為JavaScript。

  • 如果在運(yùn)行應(yīng)用程序之前沒(méi)有翻譯到JavaScript,您可能會(huì)看到瀏覽器中隱藏的編譯器警告和錯(cuò)誤。

  • 當(dāng)設(shè)置了 emitDecoratorMetadata 選項(xiàng)時(shí),TypeScript會(huì)為代碼的每個(gè)類生成元數(shù)據(jù)。 如果不指定此選項(xiàng),將生成大量未使用的元數(shù)據(jù),這會(huì)影響文件大小和對(duì)應(yīng)用程序運(yùn)行時(shí)的影響。

  • Angular 2包含來(lái)自 app 文件夾的包,其中文件將具有 .ts 擴(kuò)展名。

  • 接下來(lái),它將從 app 文件夾加載主組件文件。 如果沒(méi)有找到主要組件文件,那么它將在控制臺(tái)中顯示錯(cuò)誤。

  • 當(dāng)Angular調(diào)用main.ts中的引導(dǎo)函數(shù)時(shí),它讀取Component元數(shù)據(jù),找到“app"選擇器,定位一個(gè)名為app的元素標(biāo)簽,并在這些標(biāo)簽之間加載應(yīng)用程序。

要運(yùn)行代碼,您需要在 app 文件夾下需要保存以下 TypeScript(.ts)文件。

data_binding_main.ts
import {bootstrap} from 'angular2/platform/browser';           //importing bootstrap function
import {AppComponent} from "./data_binding_app.component";     //importing component function

bootstrap(AppComponent);

現(xiàn)在我們將在TypeScript(.ts)文件中創(chuàng)建一個(gè)組件,如下所示:

data_binding_app.component.ts
import {Component} from 'angular2/core';

@Component({
    selector: 'my-app',
    template: `
           <ul>
              <li
              *ngFor="#Item of Items"
              (click)="onItemClicked(Item)">
                  {{ Item.name }}
              </li>
           </ul>
           <input type="text" [(ngModel)]="clickedItem.name">
   `
})
export class AppComponent {
     public Items = [
                     {name: "Butter"},
                     {name: "Milk"},
                     {name: "Yogurt"},
                     {name: "Cheese"},
                  ];
     public clickedItem = {name: ""};
     onItemClicked(Item) {
        this.clickedItem = Item;
     }
}
  • @Component 是一個(gè)裝飾器,它使用配置對(duì)象來(lái)創(chuàng)建組件及其視圖。

  • 選擇器創(chuàng)建組件的實(shí)例,其中找到< my-app> 父HTML中的標(biāo)記。

  • 接下來(lái)是 * ngFor 指令創(chuàng)建我們?cè)谀0逯薪壎ǖ囊晥D導(dǎo)出。 *是使用Angular 2模板語(yǔ)法與模板標(biāo)記的縮寫(xiě)。

  • 可以在模板中引用局部變量 Item ,并獲取數(shù)組的索引。 當(dāng)您點(diǎn)擊項(xiàng)目值時(shí), onItemClicked()事件將被激活,Angular 2將綁定模型的名稱與模板的局部變量。

  • 當(dāng)用戶從列表中單擊項(xiàng)目名稱時(shí),模型名稱 clickedItem 名稱綁定,并在文本框中顯示項(xiàng)目名稱。

輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將上面的HTML代碼保存為index.html文件,如同我們?cè)陂_(kāi)發(fā)環(huán)境章節(jié)中創(chuàng)建的,并使用上面的包含.ts文件的應(yīng)用程序文件夾。

  • 打開(kāi)終端窗口并輸入以下命令:

    npm start
  • 稍后,瀏覽器選項(xiàng)卡應(yīng)打開(kāi)并顯示輸出,如下所示。

或者,您可以以其他方式運(yùn)行此文件:

  • 將上面的HTML代碼另存為服務(wù)器根文件夾中的 angular2_data_binding.html 文件。

  • 將此HTML文件打開(kāi)為http://localhost/angular2_data_binding.html,并顯示如下所示的輸出。

此示例在您從列表中點(diǎn)擊項(xiàng)目名稱時(shí)會(huì)在項(xiàng)目名稱中顯示。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)