I'm trying to do the simplest two way binding in Angular2. I would like to share a variable between my component and it's template.
我正在尝试在Angular2中进行最简单的双向绑定。我想在我的组件和它的模板之间共享一个变量。
My template is:
我的模板是:
<textarea [(ngModel)]="currentQuery"></textarea>
And my component is:
我的组件是:
import { Component } from '@angular/core';
import { ViewChild } from '@angular/core';
import { OnInit } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'vs-home',
templateUrl: 'home.component.html'
})
export class HomeComponent {
private currentQuery: string = '';
}
According to the docs this should work but I'm getting:
根据文档,这应该工作,但我得到:
Error: Uncaught (in promise): Error: Template parse errors:
Can't bind to 'ngModel' since it isn't a known property of 'textarea'. ("
<div class="query-bar-container">
<textarea [ERROR ->][(ngModel)]="currentQuery"></textarea>
<!-- <button type="button" class="btn btn-default" (click"): HomeComponent@2:15
1 个解决方案
#1
10
@NgModule({
...
imports: [
/* BrowserModule or CommonModule */,
FormsModule /* or RectiveFormsModule */]
...
})
#1
10
@NgModule({
...
imports: [
/* BrowserModule or CommonModule */,
FormsModule /* or RectiveFormsModule */]
...
})