以angular2在注射剂之间传递数据

时间:2017-04-14 11:24:25

标签: angular service dependency-injection

问题是自我解释,我已经看到,由于@Injectables不是组件,我不能使用传统的@Input和@Output来完成这项工作。 提前谢谢!

1 个答案:

答案 0 :(得分:1)

您可以通过构造函数将一个注射剂注射到第二个注射剂中:

import { SecureHttp } from './secureHttp.service';

@Injectable()
export class IdentityService {

  constructor(private http: SecureHttp) { }
}