本文转自:http://www.javashuo.com/article/p-oqtnivrg-nn.htmlphp
建立一个组件很简单,好比咱们建立一个 card 组件:css
ng g c card
这里我使用的是 Angular CLI 脚手架,固然你要是不以为麻烦,也能够一个个文件建。html
不过!要提醒一点,当使用 ng
建立时,会将建立的组件、服务这些自动添加到 app/app.module.ts
中,若是你是手动建立的话必定要记得在模块中写入你建立的。json
如今来看下 app/card/card.component.ts
:bootstrap
import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-card', templateUrl: './card.component.html', styleUrls: ['./card.component.scss'] }) export class CardComponent implements OnInit { constructor() { } ngOnInit() {} }
@Component()
是一个装饰器,惟一须要的参数是一个元数据对象。数组
参数说明:markdown
styleUrls:样式文件路径
固然,若是你使用内联模板和内联样式的话,能够将 templateUrl
换为 template
, styleUrls
换成 styles
angular2
template:模板字符串app
export class CardComponent implements OnInit { }
是一个控制器angular4
如今咱们动手作一个小 demo
建立一个 demo-component
组件,用来放置实例
好比在 app/demo/demo-component.component.html
中直接使用:
<app-card></app-card>
你可能会问为何是 app-card
,以前建立的不是 card
组件么?
这里须要看你的配置文件 .angular-cli.json
,通常默认添加 app
的前缀
因此你建立的 card
组件的 selector
就变成了 app-card
。
这时你启动项目后会发现页面中显示 card works!(当你用 ng
建立组件后都会自动在 template 中添加 “组件名 works!”)
若没有显示这预期的效果,就去检查下 app/app.component.html
中是否为
<app-demo-component></app-demo-component>
这里暂停下来梳理下思路,
index.html
为整个应用的入口文件
你会发现 body
中嵌入了 <app-root></app-root>
而这个组件也就是根组件 app.component.ts
为了方便管理咱们就将全部的实例都放置在 app.component.html
中,这里只有一个实例
<app-demo-component></app-demo-component>
在 demo-component.html
中实例化的是一个 card
组件,内容为:
<app-card></app-card>
好了!想着思路应该也梳理清楚了,那么思考下如何 动态嵌入内容 呢?
在 app/demo/demo-component.html
中修改以下:
<app-card> <h3>卡头</h3> 我是卡的内容 </app-card>
当打开页面时发现没有出现动态嵌入的内容?别慌~
// app/card/card.component.html <ng-content></ng-content>
上面的代码表示将组件内部的内容插入指定位置,ng-content
还有一个特别的属性,值能够是”element”, #id”, “.class”, “[name=value]”等CSS选择器,好比咱们能够这样:
// card.component.html <ng-content selector="h3"></ng-content>
上面的代码意思是将包含h3的内容插入指定位置。
import {BrowserModule} from '@angular/platform-browser'; import {NgModule} from '@angular/core'; import {AppComponent} from './app.component'; import {FormsModule} from '@angular/forms'; import {HttpModule} from '@angular/http'; @NgModule({ declarations: [ // 声明在该模块中有哪些东西(组件、指令、管道) AppComponent ], imports: [ // 声明该模块须要正常运转时须要用到哪些模块(即:该模块依赖哪些其它模块) BrowserModule, FormsModule, HttpModule ], providers: [], // 声明模块中的服务 bootstrap: [AppComponent] // 声明该模块的主组件 }) export class AppModule { }
上述建立的组件是用 Angular4,默认配置了 moduleId。
这里主要说下 Angular2 中的 moduleId。
没有module.id:
@Component({
selector: 'my-component', templateUrl: 'app/components/my.component.html', <- Starts from base path styleUrls: ['app/components/my.component.css'] <- Starts from base path })
使用module.id:
tsconfig.json:
{
"compilerOptions": { "module": "commonjs", <- need to change this if you want to use module.id property ... @Component({ moduleId: module.id, selector: 'my-component', templateUrl: 'my.component.html', <- relative to the components current path styleUrls: ['my.component.css'] <- relative to the components current path })