Angular4.x创建组件、绑定数据、绑定属性、数据循环、条件判断、事件、表单处理、双向数据绑定

目录
一、创建angualr组件
二、angualr4.0绑定数据
三、数据循环 ngFor
四、条件判断
ngIf
五、执行事件 (click)=”getData()”
六、绑定属性
七、表单处理
八、双向数据绑定

一、创建angualr组件

https://github.com/angular/angular-cli

Scaffold Usage
Component ng g component my-new-component 指定目录创建 :ng g component components/Footer
Directive ng g directive my-new-directive
Pipe ng g pipe my-new-pipe
Service ng g service my-new-service
Class ng g class my-new-class
Guard ng g guard my-new-guard
Interface ng g interface my-new-interface
Enum ng g enum my-new-enum
Module ng g module my-module

创建组件

  1. ng g component components/header
  1. 使用组件:
  2. <app-header></app-header>

二、angualr4.0绑定数据

  1. 数据文本绑定
    {{}}
  1. <h1> {{title}}</h1>

2.绑定html

  1. this.h="<h2>这是一个h2用[innerHTML]来解析</h2>"
  2. <div [innerHTML]="h"></div>

三、 数据循环 *ngFor

1、*ngFor 普通循环

  1. <ul> <li *ngFor="let item of list"> {{item}} </li> </ul>

2、循环的时候设置key

  1. <ul> <li *ngFor="let item of list;let i = index;"> {{item}} --{{i}} </li> </ul>
  1. template循环数据
  1. <ul> <li template="ngFor let item of list"> {{item}} </li> </ul>

四、条件判断 *ngIf

  1. <p *ngIf="list.length > 3">这是ngIF判断是否显示</p>
  2. <p template="ngIf list.length > 3">这是ngIF判断是否显示</p>

五、执行事件 (click)=”getData()”

  1. <button class="button" (click)="getData()"> 点击按钮触
  2. <button class="button" (click)="setData()"> 点击按钮设置数据 </button
  3. getData(){ /*自定义方法获取数据*/ //获取
  4. alert(this.msg); }
  5. setData(){ //设置值
  6. this.msg='这是设置的值'; }

六、绑定属性

  1. <div [id]="id" [title]="msg">调试工具看看我的属性</div>

七、表单处理

  1. <input type="text" (keyup)="keyUpFn($event)"/>
  2. keyUpFn(e){ console.log(e) }

八、双向数据绑定

  1. <input [(ngModel)]="inputValue">

注意引入:FormsModule

  1. import { FormsModule } from '@angular/forms';
  2. @NgModule({
  3. declarations: [ AppComponent, HeaderComponent, FooterComponent, NewsComponent ],
  4. imports: [ BrowserModule, FormsModule ],
  5. providers: [],
  6. bootstrap: [AppComponent]
  7. })
  8. export class AppModule { }

使用:

  1. <input type="text" [(ngModel)]="inputValue"/> {{inputValue}}
作者:admin  创建时间:2018-06-18 16:38
 更新时间:2018-06-18 16:56