仅在 12 个组件中的 2 个组件中出现此错误。
ng model is not a known property of input
即使在app.modules.ts
. 我也得到了我ngModel
在其他组件中使用的错误,但它们工作正常。
为什么我只在 2 个组件中收到错误?
如何摆脱它?
仅在 12 个组件中的 2 个组件中出现此错误。
ng model is not a known property of input
即使在app.modules.ts
. 我也得到了我ngModel
在其他组件中使用的错误,但它们工作正常。
为什么我只在 2 个组件中收到错误?
如何摆脱它?
如果这些组件是在另一个模块中注册的,而不是在 appModule 中,那么您需要在该模块中导入 FormsModule,与 appModule 相同。
如果您想使用您的输入,而不是在表单中,您可以将它与 ngModelOptions 一起使用并使独立为真......
[ngModelOptions]="{standalone: true}"
app.module.ts
你已经这样做了。
import { FormsModule } from '@angular/forms';
但是只需检查您是否有任何其他模块,而不是app.module.ts
然后您应该只在一个地方导入。试一试看看。
@NgModule({
imports: [
FormsModule
],
})