当前位置: 首页 > 知识库问答 >
问题:

不能绑定到“ng model”,因为它不是“input”的已知属性?[副本]

谷梁博易
2023-03-14

完整代码为:

 <input #inputSearch tabindex="0" [(ngModel)]="searchValue" (keydown.enter)="searchByClick()" type="text">

app.module为:

@NgModule({
declarations: [],
 imports: [
    CommonModule,
    SharedModule,
    BrowserModule,
    AppRoutingModule
  ]
)}
export class AppModule {}

怎么了,为什么对我不起作用?

共有2个答案

仲孙温文
2023-03-14

试试看:

import { FormsModule } from '@angular/forms';

将此模块添加到您的:

@NgModule({
declarations: [],
 imports: [
    CommonModule,
    SharedModule,
    BrowserModule,
FormsModule,
    AppRoutingModule
  ]
)}
export class AppModule {}
翟修永
2023-03-14

从“@angular/forms”导入{FormsModule};从“@angular/core”导入{NgModule};在app.module.ts中导入FormsModule和NgModule

 类似资料: