Angular 2 用户输入的事件绑定
描述
当您使用Angular事件绑定语法单击它时,用户可以输入文本或显示文本值。
例子
下面的例子描述了在Angular 2中使用绑定语法触发用户输入:
<!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>
上述代码包括以下配置选项:
您可以使用typescript版本配置index.html文件。在使用transpiler选项运行应用程序之前,SystemJS将TypeScript转换为JavaScript。
如果在运行应用程序之前没有翻译到JavaScript,您可能会看到浏览器中隐藏的编译器警告和错误。
当设置emitDecoratorMetadata选项时,TypeScript会为代码的每个类生成元数据。如果不指定此选项,将生成大量未使用的元数据,这会影响文件大小和对应用程序运行时的影响。
Angular 2包括来自app文件夹的包,其中文件将具有.ts扩展名。
接下来它将从应用程序文件夹加载主组件文件。如果没有找到主要组件文件,那么它将在控制台中显示错误。
当Angular调用main.ts中的引导函数时,它读取Component元数据,找到“app”选择器,找到一个名为app的元素标签,并在这些标签之间加载应用程序。
要运行代码,您需要以下TypeScript(.ts)文件,您需要保存在应用程序文件夹下。
user_input.tsimport {bootstrap} from 'angular2/platform/browser'; import {AppComponent} from "./app.component"; bootstrap(AppComponent);
现在我们将在TypeScript(.ts)文件中创建一个组件,如下所示:
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是一个装饰器,它使用配置对象来创建组件。
-
选择器创建组件的实例,在父HTML中找到<my-app>标记。
-
上面的app.component将导入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指令用于循环从listItems对象数组中的项目列表。
shopping-list.component组件使用(单击)绑定事件。
要添加项目,请输入项目,然后单击添加项目按钮并删除项目,单击项目并单击删除项目按钮。
输出
让我们执行以下步骤,看看上面的代码如何工作:
将上面的HTML代码保存为index.html文件,如同我们在环境章节中创建的,并使用上面的包含.ts文件的应用程序文件夹。
打开终端窗口并输入以下命令:
npm start
稍后,浏览器选项卡应打开并显示输出,如下所示。
或者你可以用另一种方式运行这个文件:
将上面的HTML代码作为binding_user_input.html文件保存在服务器根文件夹中。
将此HTML文件打开为http://localhost/binding_user_input.html,并显示如下所示的输出。
单击任何项目,然后单击删除项目以从列表中删除项目并输入项目,然后单击添加项目以添加项目。
更多建议: