Angular2之入门示例

概述

在学ng2,手写一个例子感受下,当然是经典的双向数据绑定.

环境

“@angular/core”: “^4.0.0” + Typescript 2.3.4

代码展示

文件组织

src/app 目录下主要文件:
├── app.component.html
├── app.component.ts
├── app.module.ts
├── twoway-bind/
│ └── twoway-bind.component.ts

首先是根模块app.module.ts,由于在twoway-bind.component.ts中使用了NgModel指令,
所以这里一定要引入FormsModule.
我最开始一直报这个错Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’.”.

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';

import { AppComponent } from './app.component';
import { TwowayBindComponent } from './twoway-bind/twoway-bind.component';

@NgModule({
  declarations: [
    AppComponent,HelloWorldComponent,UserItemComponent,UserListComponent,TwowayBindComponent
  ],imports: [
    BrowserModule,FormsModule // 记得写上
  ],providers: [],bootstrap: [AppComponent]
})
export class AppModule { }

再就是根组件app.component.ts,目前只是一个 容器而已

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',templateUrl: './app.component.html'
})
export class AppComponent {
}

双向绑定的实现twoway-bind.component.ts:

import { Component,OnInit } from '@angular/core';

@Component({
    selector: 'app-twoway-bind',template: `
        <div>
            <input type="text" [(ngModel)]="username">
            <p>{{  username  }}</p>
        </div>
    `
})
export class TwowayBindComponent implements OnInit {
    username: string = 'Hello World!';

    ngOnInit(): void {
    }
}

注意上面的[(ngModel)]这种写法,()表示输出,[]表示输入,这种写法就可以实现双向绑定了.
angular2中默认是单向数据流,为了避免版本1中的数据流向太乱的问题,使用输入输出间接地实现双向绑定.

最后就是在页面调用这个组件,在app.component.html中:

<app-twoway-bind></app-twoway-bind>

欢迎补充指正!

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...