Angular 2 结构指令
描述
结构指令通过添加,替换和删除其元素来更改DOM的布局。 结构指令的两个常见示例如下所示:
NgFor:这是一个自定义数据显示的repeater指令。 它可用于显示项目列表。
NgIf:它根据表达式求值删除或重新创建DOM树的一部分。
例子
下面的例子描述了使用Angular 2中的结构指令:
<html> <head> <title>Contact Form</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <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/structural_main') .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)文件,您需要保存在应用程序文件夹下。
structural_main.tsimport {bootstrap} from 'angular2/platform/browser'; //importing bootstrap function import {AppComponent} from './structural_app.component'; //importing component function bootstrap(AppComponent);
现在我们将在TypeScript(.ts)文件中创建一个组件,我们将为该组件创建一个视图。
structural_app.component.tsimport {Component} from 'angular2/core'; @Component({ selector: 'my-app', template: ` <h2>{{title}}</h2> <p class="alert alert-success" *ngIf="names.length > 2">Currently there are more than 2 names!</p> <p class="alert alert-danger" *ngIf="names.length <= 2">Currently there are less than 2 names left!</p> <ul> <li *ngFor="#nam of names" (click)="onNameClicked(nam)" >{{ nam.name }}</li> </ul> <input type="text" [(ngModel)]="selectedName.name"> <button (click)="onDeleteName()">Delete Name</button><br><br> <input type="text" #nam> <button (click)="onAddName(nam)">Add Name</button> ` }) export class AppComponent { title = 'Structural Directives'; public names = [ { name: "Kamal"}, { name: "Mitchel"}, { name: "Yoon"}, { name: "Johnson"}, { name: "Jet Li"} ]; public selectedName = {name : ""}; onNameClicked(nam) { this.selectedName = nam; } onAddName(nam) { this.names.push({name: nam.value}); } onDeleteName() { this.names.splice(this.names.indexOf(this.selectedName), 1); this.selectedName.name = ""; } }
-
@Component是一个装饰器,它使用配置对象来创建组件及其视图。
-
选择器创建组件的实例,在父HTML中找到<my-app>标记。
-
Next是* ngFor指令创建我们在模板中绑定的视图导出。 *是使用Angular 2模板语法与模板标记的缩写。
-
局部变量nam可以在模板中引用并获取数组的索引。 当你点击项目值,onNameClicked()事件将获得激活,Angular 2将绑定模型名称从数组与模板的局部变量。
-
方法onAddName()和onDeleteName()用于从列表中添加和删除项目。onNameClicked()方法使用局部变量'nam'作为参数,并使用selectedName对象显示所选项目。
输出
让我们执行以下步骤,看看上面的代码如何工作:
将上面的HTML代码保存为index.html文件,如同我们在环境章节中创建的,并使用上面的包含.ts文件的应用程序文件夹。
打开终端窗口并输入以下命令:
npm start
稍后,浏览器选项卡应打开并显示输出,如下所示。
或者你可以用另一种方式运行这个文件:
将上面的HTML代码另存为服务器根文件夹中的 structural_directives.html 文件。
将此HTML文件打开为http://localhost/structural_directives.html,并显示如下所示的输出。
更多建议: