2017-10-09 12 views
-1
getPrefectures() { 
    return this.http.get(this.PREFECTURE_API); 
} 

this.addressService.getPrefectures().subscribe((response) => { 
    this.prefectureData = response.json(); 
    this.updatePrefecture(); 
}); 

updatePrefecture() { 
    for (let d of this.prefectureData) { 
     console.log(d) 
    } 
} 

APIから一般的にAngularのJSONを取得していますが、結果は次のようになります。Angular4でJSONを正しく解析できないのはなぜですか?

enter image description here

次はJSON生データです。

enter image description here

どのように我々は正しくデータを得ることができますか?

ありがとうございます。

+1

コードやその他のテキストを提供するために画像を使用しないでください。しかし、あなたは応答のボディを渡すのではありませんか? – pzaenger

+0

申し訳ありませんが、次回は気をつけます。 –

答えて

0

解決済みです。

this.prefectureData = JSON.parse(response.json()); 
関連する問題