[ngModel] 的数据绑定不起作用 Angular 6
Data Binding with [ngModel] not working Angular 6
我刚刚在 IntelliJ
上创建了一个空的 Angular
项目,我正在尝试将文本框绑定到对象的成员。我的对象保留 undefined
或我在 OnInit
中分配给它的任何内容。我将 FormsModule
包含在 app.module.ts
中,但无法正常工作。
这是我的 app.component.html
文件:
<form #form="ngForm">
<input type="text" name="name" id="name" [ngModel]="person.name">
<button (click)="save()">save</button>
</form>
这是app.component.ts
:
import {Component, OnInit} from '@angular/core';
import {IPerson, Person} from './model/person.model';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
title = 'my-app';
names?: string;
person?: IPerson;
save() {
console.log('::::::' + this.person.name);
}
ngOnInit(): void {
this.person = new Person();
}
}
app.module.ts
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {FormsModule} from "@angular/forms";
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
这是 person.model.ts
:
export interface IPerson {
name?: string;
}
export class Person implements IPerson {
constructor(
public name?: string
) {
}
}
我做错了什么?
您的 ng-model 绑定必须是双向绑定,如下所示:
(注意额外的括号)
<input type="text" name="name" id="name" [(ngModel)]="person.name">
你可以看这里:https://angular.io/api/forms/NgModel
在您的情况下,您可以通过这种方式更正 app.component.html
的代码:
<form #form="ngForm">
<input type="text" name="name" id="name" [(ngModel)]="person.name">
<button (click)="save()">save</button>
</form>
我刚刚在 IntelliJ
上创建了一个空的 Angular
项目,我正在尝试将文本框绑定到对象的成员。我的对象保留 undefined
或我在 OnInit
中分配给它的任何内容。我将 FormsModule
包含在 app.module.ts
中,但无法正常工作。
这是我的 app.component.html
文件:
<form #form="ngForm">
<input type="text" name="name" id="name" [ngModel]="person.name">
<button (click)="save()">save</button>
</form>
这是app.component.ts
:
import {Component, OnInit} from '@angular/core';
import {IPerson, Person} from './model/person.model';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
title = 'my-app';
names?: string;
person?: IPerson;
save() {
console.log('::::::' + this.person.name);
}
ngOnInit(): void {
this.person = new Person();
}
}
app.module.ts
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {FormsModule} from "@angular/forms";
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
这是 person.model.ts
:
export interface IPerson {
name?: string;
}
export class Person implements IPerson {
constructor(
public name?: string
) {
}
}
我做错了什么?
您的 ng-model 绑定必须是双向绑定,如下所示: (注意额外的括号)
<input type="text" name="name" id="name" [(ngModel)]="person.name">
你可以看这里:https://angular.io/api/forms/NgModel
在您的情况下,您可以通过这种方式更正 app.component.html
的代码:
<form #form="ngForm">
<input type="text" name="name" id="name" [(ngModel)]="person.name">
<button (click)="save()">save</button>
</form>