当我尝试从angular / http导入HTTP_PROVIDERS时出现此错误:
- Error:(3,9) TS2305: Module '"projectname/node_modules/@angular/http/index"' has no exported member 'HTTP_PROVIDERS'.
- import { Component } from '@angular/core';
- import {GithubService} from './services/github.service';
- import {HTTP_PROVIDERS} from '@angular/http';
- @Component({
- selector: 'my-app',template: '<h1>My First Angular 2 App</h1><Profile></Profile>',providers: [ HTTP_PROVIDERS,GithubService ]
- })
- export class AppComponent { }
如果你使用> = RC.5将HttpModule添加到@NgModule中的导入:
- @NgModule({
- imports: [HttpModule],...
- })
- class AppModule {}