1. 创建服务
ng generate service my-comp -m app.module 生成一个新服务(用 -m 将生成的服务注册到后面路径中)
app.module.ts 中多了 import{MyCompService}from'./my-comp.service';
2.使用方法
服务函数中打印
import{Injectable}from'@angular/core';
@Injectable()
export classMyCompService{
constructor() {
}
hello(){
console.log(3456)
alert(3456)
}
}
3.在组建函数中调用
注册
import{MyCompService}from'./my-comp.service';
使用