我正在學習Ang2。我成功地運行了英雄教程。爲了練習,我只是在主頁面添加了一個鏈接來獲得一個新組件。有一個帶有電臺列表的json文件。以下是我的服務和組件:Angular 2 http服務
import { Radio } from '../models/radio';
import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import 'rxjs/Rx';
@Injectable()
export /**
* RadioService
*/
class RadioService {
radios: Radio[] = [];
len: Number = 0;
http: Http;
constructor(http: Http) {
this.http = http;
}
getRadios() {
console.log('Radios Service is being called');
this.http.get('app/mock/FranceRadioJSON.json')
.map((res: Response) => res.json())
.subscribe((rad: Radio[]) => { // Succes
console.log('Radios Service Success');
this.radios = rad;
this.len = rad.length;
}
, err => {// Failure
console.log('Radio Services Failure');
console.error(err);
}
, // complete
() => {
console.log('Get Radios Complete');
console.log('Records NB: ' + this.len);
console.log('radios nb: ' + this.radios.length)
}
)
;
return this.radios;
}
和組件是:
import { Component, OnInit } from '@angular/core';
import { RouteParams } from '@angular/router-deprecated';
import { Radio } from '../../models/radio';
import { RadioService } from '../../services/radio.service';
@Component({
selector: 'radio'
, templateUrl: 'app/html/radio.component.html'
, providers: [RadioService]
})
export /**
* RadioComponent
*/
class RadioComponent {
radios: Radio[] = [];
constructor(
private radioservice: RadioService) {
}
getRadios() {
this.radios = this.radioservice.getRadios();
console.log('radio component NB: ' + this.radios.length);
}
ngOnInit() {
this.getRadios()
}
}
的問題是服務的呼叫首先來了,也沒有收音機是而當服務回報用console.log調用我看到這是成功的,並從JSON文件獲取所有記錄。任何幫助將不勝感激。
感謝您的詳細解釋。我看到更好的過程。 –
如何強制服務返回Radio [],還是應該將組件中的響應轉換? –
您沒有提供'Radio'類(或接口),也沒有提供數據看起來像從observable獲得的樣子。沒有完整的信息很難說清楚。 http://stackoverflow.com/questions/22885995/how-do-i-initialize-a-typescript-object-with-a-json-object可能是你在找什麼。 –