用angualr的ng 指令创建组件时,执行下面命令时

出现以下报错

ng g c report
Two or more projects are using identical roots. Unable to determine project using current working directory. Using default workspace project instead.
More than one module matches. Use skip-import option to skip importing the component into the closest module.

出现此问题是此项目中有多个以.module.ts的文件存在,创建时无法确定将组件导入那个module中,因此要通过–module来指定。

ng g c report --module=xxxx

其中xxxx是 .module.ts去掉的名称。

分类: 前端