How to create an Http instance WITHOUT using constructor DI? (RC.5+) [duplicate]
问题 This question already has an answer here : angular2 resolveAndCreate HTTP - missing HTTP_PROVIDERS in RC7 (1 answer) Closed 3 years ago . I need to get an instance of Http without using Angular2's DI ( constructor(private http: Http) ) The following code was taken from another stackoverflow question, and it works in Angular2 RC.4 and earlier versions, but not in RC.5+(HTTP_PROVIDERS is no longer available) : const injector = ReflectiveInjector.resolveAndCreate([ HTTP_PROVIDERS ]); this.http =