Heim > Fragen und Antworten > Hauptteil
http://www.alloyteam.com/2015...
In diesem Artikel geht es kurz um das Prinzip der Abhängigkeitsinjektion in AngularJS. Möchten Sie wissen, wie ng2 die Abhängigkeitsinjektion implementiert?
phpcn_u15822017-07-04 13:46:32
angular2的注入其实可以在构造器constructor
里完成。
例如你发的例子里有注入http
,那在angular2里可以写成
constructor(private http: Http){}
前提是要引用Http
模块
import { Http } from '@angular/http';
需要调用http
方法的地方只需要
this.http.get()....
就行了。
其他方法也类似,具体可以去官网看看