Angular 2:没有ConnectionBackend的提供者

abb*_*33f 28 angular-http angular

得到这个"ConnectionBackend没有提供者!" 尝试使用httppromise 时出错.

main.ts

// ... tl;dr import a bunch of stuff

platformBrowserDynamic().bootstrapModule(MyModule);
Run Code Online (Sandbox Code Playgroud)

myModule.ts

// ... tl;dr import a bunch of stuff

@NgModule({
 declarations: [
        PostComponent
  ],
  providers: [
    Actions,
    MyService,
    Http
  ],
  imports: [
    ...
  ],
  bootstrap: [MyComponent]
})
Run Code Online (Sandbox Code Playgroud)

myComponent.ts

import { Component, OnInit } from '@angular/core';
import {ActivatedRoute, Router} from '@angular/router';
import {Observable} from 'rxjs/Observable';
import {MyService} from './../services/myService'
import {Post} from './post';

@Component({
  templateUrl: 'post.component.html',
  styleUrls: ['post.component.css']
})
export class MyComponent implements OnInit {
  post: Observable<Post>;
  postId : Number;

  constructor(private route: ActivatedRoute, private router: Router, private service:MyService) {

  }


  ngOnInit() {
    this.route.params.subscribe(params => {
      this.postId = +params['id'];
      this.post = this.service.getPostById(this.postId);
    });
  }

}
Run Code Online (Sandbox Code Playgroud)

myService.ts

import {Injectable} from "@angular/core"
import {Http} from '@angular/http';
import {Observable} from 'rxjs/Observable';
import {Post} from './../post/post';
import 'rxjs/Rx'

@Injectable()
export class MyService {

    endpoint_url:String = "http://someurl.com/";

    constructor(private http: Http){
    }

    getPostById (id:Number) : Observable<Post> {
        return this.http.get(this.endpoint_url + id.toString()).map(res => res.json());
    }
}
Run Code Online (Sandbox Code Playgroud)

一切看起来不错,但后来我收到这个错误:

error_handler.js:51Error: Uncaught (in promise): Error: Error in ./MyComponent class MyComponent_Host - inline template:0:0 caused by: No provider for ConnectionBackend!
at resolvePromise (zone.js:429)
at zone.js:406
...
Run Code Online (Sandbox Code Playgroud)

这里是ConnectionBackend的文档.我想我只需要添加一些providersmyModule

TGH*_*TGH 93

在模块中导入HttpModule而不是注册Http为提供者.

import {HttpModule} from '@angular/http';

@NgModule({
 imports: [HttpModule], 
 declarations: [
        PostComponent
  ],
  providers: [
    Actions,
    MyService

  ],
  bootstrap: [MyComponent]
})
Run Code Online (Sandbox Code Playgroud)

HttpModule为其所有服务注册提供程序.