ng生成模块英雄/英雄--module app --flat-在此ng命令中路由--flat是什么意思

时间:2019-01-11 11:59:02

标签: angular angular-cli

我正在通过Angular文档学习Angular路由,但无法理解--flat命令中的ng

ng generate module heroes/heroes --module app --flat --routing 

2 个答案:

答案 0 :(得分:2)

这是Angular Docs必须说的:

  

为true时,在当前项目根目录的顶层创建新文件。

     

默认:false

自从您编写了heroes/heroes之后,这些文件将在名为heroes的文件夹中创建

详细了解here

答案 1 :(得分:2)

ng generate module app-routing --flat --module=app
  

-flat将文件放在src / app中,而不是它自己的文件夹中。

     

-module = app告诉CLI将其注册到AppModule的imports数组中。

在这里https://angular.io/tutorial/toh-pt5

了解更多