依赖注入

1.创建一个服务
1.1引入import { Injectable } from '@angular/core';
@Injectable()
export class AppService {
constructor() { }
定义一个方法
}
2.在需要使用的组件的ts文件里引入该服务
2.1 在ngComponent修饰器的providers里加入:providers: [AppService]
2.2 然后初始化:
constructor(private returnPromise: AppService, public alertController: AlertController) { }
2.3使用:
getPromise:any;
confirm() {
this.getPromise = this.returnPromise.giveService();
this.getPromise.then(res=>{
console.log(res)
}).catch(err=>{
console.log(err)
})
}
2.4 在页面中用时间属性的方法绑定confirm()方法:
点击按钮
以上就是服务的以来注入

你可能感兴趣的:(依赖注入)