在main.ts不能在角2
import { HTTP_PROVIDERS } from '@angular/http';
import { AppComponent } from './app.component';
bootstrap(AppComponent,[HTTP_PROVIDERS]);
在employee.service.ts
import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import {Employee} from '../classes/employee';
import { Observable } from 'rxjs/Observable';
@Injectable()
export class EmployeeService{
constructor(private http: Http){
this.http = http;
}
}
我看到HTTP爲未定義構造函數被調用即使讀取未定義的屬性 '得到'。
任何幫助,請...........
我已經開始學習angular2。從幾天來,我花時間在這個問題上。任何幫助都會很好 –
我的代碼中沒有看到任何錯誤,但是您還沒有發佈足夠的詳細信息以便我們提供幫助。例如,控制檯中的錯誤,您注入EmployeeService的代碼部分。 –
謝謝丹尼爾。我忘記了**提供者:[EmployeeService] ** xyz.component.ts –