我如何知道何时需要向app.module.ts添加内容?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何知道何时需要向app.module.ts添加内容?相关的知识,希望对你有一定的参考价值。
我的app.module.ts
需要添加FormsModule
来运行我的模板代码我怎么知道它?
错误有点神秘,
Can't bind to 'ngModel' since it isn't a known property of 'input'. ("
有什么好处
import { NgModel } from '@angular/forms';
在我的组件中,如果我没有
import { FormsModule } from '@angular/forms';
在我的app.module.ts
,并添加到imports
阵列。显然,我现在知道它是必需的,但我怎么知道呢?
- 这很容易记录在哪里?
- 我应该注意哪些错误?
与imports
的作用相比,NgModel
阵列的作用究竟是什么?
每个模块都可以导出一组可声明的类型 - 组件,指令或管道。如果要使用模块中声明的任何声明类型而不是使用声明的模块,则需要导入该模块。
FormsModule
导出ngModel
指令,这就是你需要导入它的原因。
我建议你阅读Avoiding common confusions with modules in Angular
这很容易记录在哪里?
您可以去documentation of the directive并查看声明它的模块:
Module | import { NgModel } from '@angular/forms';
我应该注意哪些错误?
所有错误都具有相同的格式:
Can't bind to <attribute> since it isn't a known property of <element>
如果您不想从浏览Angular教程或书籍开始,请阅读错误文本。在您的情况下,它声明ngModel不是输入的已知属性。显然,您有一个html输入字段,它显然没有ngModel属性。
然后谷歌在ngModel Angular和搜索结果中的第二个链接是这一个:https://angular.io/api/forms/NgModel。它描述了ngModel是什么,并声明您需要导入FormsModel。
以上是关于我如何知道何时需要向app.module.ts添加内容?的主要内容,如果未能解决你的问题,请参考以下文章
typescript 滑动手势 - 将hammerjs添加到app.module.ts
typescript 滑动手势 - 将hammerjs添加到app.module.ts