當(dāng)您使用Angular事件綁定語法單擊它時(shí),用戶可以輸入文本或顯示文本值。
下面的例子描述了在Angular 2中使用綁定語法觸發(fā)用戶輸入:
<!DOCTYPE html> <html> <head> <title>Angular 2 User Input</title> <script src="/attachments/w3c/es6-shim.min.js"></script> <script src="/attachments/w3c/system-polyfills.js"></script> <script src="/attachments/w3c/angular2-polyfills.js"></script> <script src="/attachments/w3c/system.js"></script> <script src="/attachments/w3c/typescript.js"></script> <script src="/attachments/w3c/Rx.js"></script> <script src="/attachments/w3c/angular2.dev.js"></script> <script> System.config({ transpiler: 'typescript', typescriptOptions: { emitDecoratorMetadata: true }, packages: {'app': {defaultExtension: 'ts'}} }); System.import('/angular2/src/app/user_input') .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)用程序之前沒有翻譯到JavaScript,您可能會看到瀏覽器中隱藏的編譯器警告和錯(cuò)誤。
當(dāng)設(shè)置emitDecoratorMetadata選項(xiàng)時(shí),TypeScript會為代碼的每個(gè)類生成元數(shù)據(jù)。如果不指定此選項(xiàng),將生成大量未使用的元數(shù)據(jù),這會影響文件大小和對應(yīng)用程序運(yùn)行時(shí)的影響。
Angular 2包括來自app文件夾的包,其中文件將具有.ts擴(kuò)展名。
接下來它將從應(yīng)用程序文件夾加載主組件文件。如果沒有找到主要組件文件,那么它將在控制臺中顯示錯(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)行代碼,您需要以下TypeScript(.ts)文件,您需要保存在應(yīng)用程序文件夾下。
user_input.tsimport {bootstrap} from 'angular2/platform/browser'; import {AppComponent} from "./app.component"; bootstrap(AppComponent);
現(xiàn)在我們將在TypeScript(.ts)文件中創(chuàng)建一個(gè)組件,如下所示:
app.component.tsimport {Component} from 'angular2/core'; import {ItemListComponent} from './shopping-list.component'; @Component({ selector: 'my-app', template: ` <my-list></my-list> `, directives:[ItemListComponent] }) export class AppComponent {}
@Component是一個(gè)裝飾器,它使用配置對象來創(chuàng)建組件。
選擇器創(chuàng)建組件的實(shí)例,在父HTML中找到<my-app>標(biāo)記。
上面的app.component將導(dǎo)入ItemListComponent組件并使用指令來包含組件。
import {Component} from "angular2/core"; @Component({ selector:'my-list', template:` <ul> <li *ngFor="#listItem of listItems" (click)="onItemClicked(listItem)">{{listItem.name}} </li> </ul> <input type="text" [(ngModel)]="selectedItem.name"> <button (click)="onDeleteItem()">Delete Item</button><br><br> <input type="text" #listItem> <button (click)="onAddItem(listItem)">Add Item</button> ` }) export class ItemListComponent{ public listItems = [ {name:"apple"}, {name:"orange"}, {name:"grapes"}, ]; public selectedItem = {name: ""}; onItemClicked(listItem){ this.selectedItem=listItem; } onAddItem(listItem){ this.listItems.push({name:listItem.value}); } onDeleteItem(){ this.listItems.splice(this.listItems.indexOf(this.selectedItem),1); } }
模板告訴Angular如何顯示組件。
* ngFor指令用于循環(huán)從listItems對象數(shù)組中的項(xiàng)目列表。
shopping-list.component組件使用(單擊)綁定事件。
要添加項(xiàng)目,請輸入項(xiàng)目,然后單擊添加項(xiàng)目按鈕并刪除項(xiàng)目,單擊項(xiàng)目并單擊刪除項(xiàng)目按鈕。
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的HTML代碼保存為index.html文件,如同我們在環(huán)境章節(jié)中創(chuàng)建的,并使用上面的包含.ts文件的應(yīng)用程序文件夾。
打開終端窗口并輸入以下命令:
npm start
稍后,瀏覽器選項(xiàng)卡應(yīng)打開并顯示輸出,如下所示。
或者你可以用另一種方式運(yùn)行這個(gè)文件:
將上面的HTML代碼作為binding_user_input.html文件保存在服務(wù)器根文件夾中。
將此HTML文件打開為http://localhost/binding_user_input.html,并顯示如下所示的輸出。
單擊任何項(xiàng)目,然后單擊刪除項(xiàng)目以從列表中刪除項(xiàng)目并輸入項(xiàng)目,然后單擊添加項(xiàng)目以添加項(xiàng)目。
更多建議: