我陷入了困境,并且试图使用2向绑定。
这是我用过的地方
<input type="text" [([(ngModel)]="user.firstName" class="form-control" name="firstName">
...
<input type="text" [([(ngModel)]="user.lastName" class="form-control" name="lastName">
我检查了大小写字母,并确保将模块导入app.module.ts
喜欢
import { FormsModule } from '@angular/forms';
和导入中的
imports: [
BrowserModule,
FormsModule
],
接下来我要寻找什么?
答案 0 :(得分:1)
错误是括号的数量
错误
[([(ngModel)]
正确
[(ngModel)]