使用带有es5的Angular2的http服务

时间:2016-08-02 15:07:23

标签: http angular ecmascript-5

我正在使用Angular2和es5。我想在服务中使用http。 不幸的是我有2个错误:   - http未定义,但定义了ng.http.Http,   - 我对主要组件有这个错误:

vendor-client.min.js:28 EXCEPTION: Can't resolve all parameters for class0: (t, ?)

这是我的服务代码:

;(function(app, ng) {
  console.log(new ng.http.Http());

  app.ApplicationsService = ng.core.Injectable().Class({
    constructor: [ng.http.Http, function(http) {
      console.log(http);
      this.applicationsEmailUrl = 'api/applications/email';
      this.http = http;
    }],

    emailExists: function(email) {
      console.log(email);
      var data = { email: email };
      return this.http.post(this.applicationsEmailUrl, data)
        .toPromise()
        .then(function(response) { response.json().data; })
        .catch(this.handleError);
    }

  });

})(window.app || (window.app = {}), window.ng);

这是主要组成部分:

;(function(app, ng) {

  app.AppComponent = ng.core
    .Component({
      selector: 'register-form',
      templateUrl: 'src/register/app.component.html'
    })
    .Class({
      constructor: [ng.core.ElementRef, app.ApplicationsService, function(ref, Applications) {
        console.log('app.component.js');
        this.programs = JSON.parse(ref.nativeElement.getAttribute('programs'));
        this.applications = Applications;
      }],
      emailExists: function(email) {
        console.log('emailExists() triggered');
        Applications.emailExists(email);
      }
    });

})(window.app || (window.app = {}), window.ng);

引导程序:

;(function(app, ng) {

  document.addEventListener('DOMContentLoaded', function() {
    ng.platformBrowserDynamic.bootstrap(app.AppComponent, [
      ng.forms.disableDeprecatedForms(),
      ng.forms.provideForms(),
      ng.http.HTTP_PROVIDERS,
      app.ApplicationsService
    ]);
  });

})(window.app || (window.app = {}), window.ng);

如果我尝试将http注入provider数组中的主要组件,它就可以工作。但我宁愿选择服务。

1 个答案:

答案 0 :(得分:0)

我发现了问题。看起来Angular2需要按顺序加载代码。主要组件在服务之前加载,因此未定义。我将所有代码放在一个文件中,然后才有效。我将尽快使用require loader。