问题是自我解释,我已经看到,由于@Injectables不是组件,我不能使用传统的@Input和@Output来完成这项工作。 提前谢谢!
答案 0 :(得分:1)
您可以通过构造函数将一个注射剂注射到第二个注射剂中:
import { SecureHttp } from './secureHttp.service';
@Injectable()
export class IdentityService {
constructor(private http: SecureHttp) { }
}