当前位置:  开发笔记 > 前端 > 正文

Angular 6“无法绑定到'ngModel',因为它不是'input'的已知属性。”

如何解决《Angular6“无法绑定到'ngModel',因为它不是'input'的已知属性。”》经验,为你挑选了1个好方法。

有一堆人已经问过这个问题,但是我已经按照每个答案将其导入到我的app.module.ts文件中,甚至将其导入了app.spec.ts文件中。

继承人的HTML文件:

{{ randomWord }}

{{ answer }}

这是app.module.ts文件:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';


import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';


import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';


import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';


@NgModule({
  declarations: [
    AppComponent,
    TestComponent,
    FormsModule
  ],
  imports: [
    BrowserModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Code-EZ.. 9

在导入而不是声明中导入FormModule

declarations: [
    AppComponent,
    TestComponent,

  ],
  imports: [
    BrowserModule,
   FormsModule
  ],

样本演示

https://stackblitz.com/edit/angular-ngmodel-stackovf?file=app/app.component.html



1> Code-EZ..:

在导入而不是声明中导入FormModule

declarations: [
    AppComponent,
    TestComponent,

  ],
  imports: [
    BrowserModule,
   FormsModule
  ],

样本演示

https://stackblitz.com/edit/angular-ngmodel-stackovf?file=app/app.component.html

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有