Angular CLI终极参考指南(翻译)-开发

Angular CLI终极参考指南

如果翻译内容对你产品困扰,可查看原文The Ultimate Angular CLI Reference Guide
在学习使用Angular CLI进行开发之前,你需要了解Angular2基础语法,可以参考我之前写的文章:angular2学习

为你的Angular项目添加功能

你可以使用ng generate命令为你的项目添加功能

  • ng generate class my-new-class: 添加class到项目
  • ng generate component my-new-component: 添加component到项目
  • ng generate directive my-new-directive: 添加directive到项目
  • ng generate enum my-new-enum: 添加enum到项目
  • ng generate module my-new-module: 添加module到项目
  • ng generate pipe my-new-pipe: 添加pipe到项目
  • ng generate service my-new-service: 添加service到项目
    对应的缩写是:
  • ng g cl my-new-class
  • ng g c my-new-component
  • ng g d my-new-directive
  • ng g e my-new-enum
  • ng g m my-new-module
  • ng g p my-new-pipe
  • ng g s my-new-service
    来看看每个指令

新增class(类)

新增名为UserProfile的class,执行:

$ ng generate class user-profile
installing component
  create src/app/user-profile.ts

Angular CLI 会自动调整文件名与class名的大小写,如下命令效果一致:

# All three commands are equivalent
$ ng generate class user-profile
$ ng generate class userProfile
$ ng generate class UserProfile

该命令做了什么?
名为UserProfile的空class创建在src/app/user-profile.ts文件中

可选参数

  • --spec: boolean, 默认false, 生成对应的单元测试文件
举例:
生成 class 'UserProfile'
$ ng generate class user-profile
生成带单元测试的 class 'UserProfile'
$ ng generate class user-profile --spec

新增component(组件)

新增selector为'app-site-header'的component,执行:

$ ng generate component site-header
installing component
  create src/app/site-header/site-header.component.css
  create src/app/site-header/site-header.component.html
  create src/app/site-header/site-header.component.spec.ts
  create src/app/site-header/site-header.component.ts

Angular CLI会自动调整对应文件名与component名的大小写,以匹配component selector,如下命令效果一致:

# All three commands are equivalent
$ ng generate component site-header
$ ng generate component siteHeader
$ ng generate component SiteHeader

该命令做了什么?

  • 创建目录src/app/site-header、
  • 目录下生成4个文件:
    • component对应的css文件
    • component对应的html文件
    • ts文件,这是一个名为SiteHeaderComponent 的component class,带有‘app-site-header’selector
    • 为component做单元测试的文件,带测试例子
  • 在最近的带有@NgModule 装饰器的module中,SiteHeaderComponent被添加到其declaration 中,在此例子中为src/app/app.module.ts中的AppModule

可选参数

  • --flat: boolean, 默认false, 在src/app中生成component文件,而不是在src/app/site-header中
  • --inline-template: boolean, 默认false, 使用inline template,而不是独立的HTML文件
  • --inline-style: boolean, 默认false, 使用inline styles,而不是独立的CSS文件
  • --prefix: boolean, 默认true, 使用在angular-cli.json指定的前缀来生成component selector(前缀表示selector的第一个单词)
  • --spec: boolean, 默认true, 是否生成单元测试文件
举例:
Generate component 'site-header'
$ ng generate component site-header
Generate component 'site-header' with inline template and inline styles
$ ng generate component site-header --inline-template --inline-style

新增directive(指令)

要生成selector为appAdminLink的执行,运行:

$ ng generate directive admin-link
installing directive
  create src/app/admin-link.directive.spec.ts
  create src/app/admin-link.directive.ts

Angular CLI会自动调整对应文件名与directive名的大小写,以匹配directive selector,如下命令效果一致:

# All three commands are equivalent
$ ng generate directive admin-link
$ ng generate directive adminLink
$ ng generate directive AdminLink

该命令做了什么?

  • 新建src/app/admin-link.directive.ts文件,并新增名为AdminLinkDirective的directive,selector为appAdminLink
  • 新建src/app/admin-link.directive.spec.ts文件,为directive做单元测试

可选参数

  • --flat: boolean, 默认为true, 在src/app中生成directive文件,而不是在src/app/admin-link中
  • --prefix: boolean, 默认为true,使用在angular-cli.json指定前缀来生成 directive selector
  • --spec: boolean, 默认为true, 是否生成单元测试文件
举例:
Generate directive 'adminLink'
$ ng generate directive admin-link
Generate directive 'adminLink' without unit test
$ ng generate directive admin-link --spec=false

新增enum(枚举)

新增名为Direction的enum ,可执行:

$ ng generate enum direction
installing enum
  create src/app/direction.enum.ts

Angular CLI会自动调整对应文件名与enum名的大小写,如下命令效果一致:

# Both commands are equivalent
$ ng generate enum direction
$ ng generate enum Direction

该命令做了什么?

  • 新增src/app/direction.enum.ts文件,生成名为Direction的enum

可选参数

改命令没有可用参数

新增module(模块)

为程序新增模块,可执行:

$ ng generate module admin
installing module
  create src/app/admin/admin.module.ts
installing component
  create src/app/admin/admin.component.css
  create src/app/admin/admin.component.html
  create src/app/admin/admin.component.spec.ts
  create src/app/admin/admin.component.ts

该命令做了什么?

  • 新建目录src/app/admin
  • 在src/app/admin/admin.module.ts文件中新建名为AdminModule的module
  • 在src/app/admin中新建名为AdminComponent的component
  • component对应的css文件
  • component对应的html文件
  • ts文件,这是一个名为AdminComponent的component class,带有‘app-admin'的selector
  • 为component做单元测试的文件,带测试例子
  • 在src/app/app.module.ts中名为AppModule的module中,AdminComponent被添加到其declaration 中
    注意:AdminModule module不会自动添加到src/app/app.module.ts的mian module AppModule中,由你选择import到需要的地方
    import你的新module到其他module中,你可以将其放到其他module的imports中,例如:
import { AdminModule } from './admin/admin.module';
@NgModule({
  // ...
  imports: [
    AdminModule
  ]
})
export class AppModule { }

可用的参数

  • --routing: boolean, 默认为false,新增一个与module对应的路由模块(routing module)AdminRoutingModule ,并import到module中
  • --spec: boolean, 默认为false, 新建src/app/admin/admin.module.spec.ts文件用于单元测试以检查模块是否存在
举例:
Add module 'admin'
$ ng generate module admin
Add module 'admin' with additional module containing routing information
$ ng generate module admin --routing

新增pipe(管道)

pipe与AngularJS1.x中的filter等同,让你在template中改变值的显示
新增一个名为convertToEuro的pipe,可执行:

$ ng generate pipe convert-to-euro
installing pipe
  create src/app/convert-to-euro.pipe.spec.ts
  create src/app/convert-to-euro.pipe.ts

Angular CLI会自动调整对应文件名与pipe名的大小写,如下命令效果一致:

# All three commands are equivalent
$ ng generate pipe convert-to-euro
$ ng generate pipe convertToEuro
$ ng generate pipe ConvertToEuro

该命令做了什么?

  • 新建文件src/app/convert-to-euro.pipe.ts,exports pipe类名为ConvertToEuroPipe
  • ConvertToEuroPipe被加到最近module(带@NgModule 装饰器)的 declaration中, 在这里例子中是 src/app/app.module.ts中的AppModule
举例:
Generate pipe 'convertToEuro' with spec and in /src/app directory
$ ng generate pipe convert-to-euro
Generate pipe 'convertToEuro' without spec and in /src/app/convert-to-euro directory
$ ng generate pipe convert-to-euro --spec=false --flat=false

新增service(服务)

新建一个service名为BackendApiService,可执行:

$ ng generate service backend-api
installing service
  create src/app/backend-api.service.spec.ts
  create src/app/backend-api.service.ts
  WARNING Service is generated but not provided, it must be provided to be used

Angular CLI会自动调整对应文件名与service名的大小写,如下命令效果一致:

# All three commands are equivalent
$ ng generate service backend-api
$ ng generate service backendApi
$ ng generate service BackendApi

该命令做了什么?

  • 新建src/app/backend-api.service.ts文件,exports名为BackendApiService的service类
  • 新建src/app/backend-api.service.spec.ts文件,用于到新建service进行单元测试
    注意AngularCLI的警告,service创建了但还没有被注入(provided ),由你选择在使用的地方将service作为provider添加到module或者component的providers: []中,例如:
import { BackendApiService } from './backend-api.service';
@NgModule({
  // ...
  providers: [BackendApiService],
  bootstrap: [AppComponent]
})

可选参数

  • --flat: boolean, 默认为true, 在src/app中生成service文件,而不是在src/app/backend-api中
  • --spec: boolean, 默认为true, 是否生成单元测试文件
举例:
Generate service with DI token 'BackendApiService' in /src/app directory
$ ng generate service backend-api
Generate service with DI token 'BackendApiService' in /src/app/backend-api directory
$ ng generate service backend-api --flat=false

特别说明

AngularCLI不会盲目地为你生成代码,其使用静态分析来更好地理解你程序的语义。
例如:当使用ng generate component来新建一个组件,AngularCLI在你程序的模块树中找到最近的模块,将新组件集成到改模块中
如果你的程序中有很多模块,AngularCLI会自动将新建的类、组件、指令、管道等集成到相应的模块中,这取决于你运行命令的目录位置。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容

  • Angular CLI 是什么? Angular CLI 是一个命令行接口(Command Line Interf...
    semlinker阅读 4,170评论 0 39
  • jHipster - 微服务搭建 CC_简书[https://www.jianshu.com/u/be0d56c4...
    quanjj阅读 794评论 0 2
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • 前端工程搭建的三种手段 全程手动,一点点自己搭建,对技术人员要求比较高,必须对框架有深入的理解和丰富的经验,要能h...
    OnePiece索隆阅读 2,433评论 0 1
  • 前阵子被电影《摔跤吧!爸爸》刷屏了。电影中的某些情节像是看到了一位好友的影子。 先说说这部电影吧。 辛格曾是印度摔...
    ALA3637阅读 821评论 2 4