我正在通过Angular文档学习Angular路由,但无法理解--flat
命令中的ng
ng generate module heroes/heroes --module app --flat --routing
答案 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数组中。