在app.module.ts裏面,imports部分,添加你的自定義模塊名
在你的自定義模塊內,添加了component之後,須要添加exports導出,相似下面java
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { C1Component } from './c1/c1.component'; import { C2Component } from './c2/c2.component'; import {S1Service} from './s1.service'; @NgModule({ declarations: [C1Component, C2Component], imports: [ CommonModule ], // 這裏聲明服務 providers: [S1Service], // 這裏聲明導出的組件 exports: [C1Component, C2Component] }) export class MyModuleModule { }
服務相似java內的構造注入,在別的類裏面用的時候,修改構造函數app
constructor(svc: S1Service) {
svc.show();
}