suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Wie wird die Abhängigkeitsinjektion von Angular2 implementiert?

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?

过去多啦不再A梦过去多啦不再A梦2726 Tage vor1003

Antworte allen(2)Ich werde antworten

  • phpcn_u1582

    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()....

    就行了。
    其他方法也类似,具体可以去官网看看

    Antwort
    0
  • 巴扎黑

    巴扎黑2017-07-04 13:46:32

    推荐你一个ng2入门视频,看第二节

    Antwort
    0
  • StornierenAntwort