Angular CLI ng g module 参数

前端之家收集整理的这篇文章主要介绍了Angular CLI ng g module 参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、在用idea创建模块时,默认是不带参数的,光杆司令一个没有组件同步生成
2、依稀记得之前看过一张表,就是介绍CLI生成模块的参数,百度不到了
3、然后github上看了下恍然大悟,直接用–help参数就知道有哪些可用的参数了
4不多说直接上命令:

C:\Users\xx\IdeaProjects\ncn-w>ng  g  module --help
ng generate module [name] <options...>
    --dry-run Run through without making any changes.       aliases:  -d -dryRun
    --force Forces overwriting of files.       aliases:  -f -force
    --app Specifies app name to use.       aliases:  -a -app
    --collection Schematics collection to use.       aliases:  -c -collection
    --lint-fix Use lint to fix files after generation.       aliases:  -lf -lintFix
    --routing (boolean)     --routing-scope (string) (Default: Child)     --spec (boolean) (Default: true)     --flat (boolean)     --common-module (boolean) (Default: true)     --module (string) Allows specification of the declaring module.       aliases:  -m

5、下次要长记性了!

原文链接:https://www.f2er.com/angularjs/145568.html

猜你在找的Angularjs相关文章