Angular 2数据绑定

时间:2017-02-16 20:38:17

标签: angular data-binding components

我是角色2的新手。我正在尝试从我视图中的输入更新组件中的变量。不知道如何将我的输入绑定到变量?感谢

1 个答案:

答案 0 :(得分:1)

我认为最简单的方法是使用ngModel

<input type="text" [(ngModel)]="yourVariable" />

然后在你的组件中,你可以创建一个变量“yourVariable”

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

@Component({
  selector: 'my-cool-app',
  templateUrl: './something.html',
  styleUrls: ['./something.css']
})
export class TimeSliderComponent {
  private yourVariable: string;

  constructor() { }  
}

有关详细信息,请查看: https://angular.io/docs/ts/latest/api/forms/index/NgModel-directive.html