我刚刚在IntelliJ上创建了一个空的Angular项目,我试图将文本框绑定到对象的成员。我的对象保持未定义状态或在OnInit中分配给它的任何内容。我在app.module.ts中包含了FormsModule,但无法正常工作。 这是我的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
) {
}
}
我在做什么错了?
答案 0 :(得分:1)
您的ng-model绑定应该是双向绑定,如下所示: (注意多余的括号)
<input type="text" name="name" id="name" [(ngModel)]="person.name">
答案 1 :(得分:0)
您可以在这里查看: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>
</fo
答案 2 :(得分:0)
您可以通过这种方式更正代码app.component.html
<form #form="ngForm">
<input type="text" name="name" id="name" [(ngModel)]="person.name">
<button (click)="save()">save</button>
</form>