如何在Ionic2中获取Array Json

时间:2017-05-29 06:53:54

标签: angularjs json ionic-framework

我想获取translatedText值。但是在console.log中保持show undefined。瓦特

this.getPosts('Hello', 'ja');

getPosts(text, category) {
  this.translateService.getPosts(text, category).subscribe(response => {
    console.log(response.data.translations.translateText);
    this.items = response.data.translations;
    console.log(items.translateText)

} 这是Json格式。

{
  "data": {
    "translations": [
      {
        "translatedText": "Hallo Welt",
        "detectedSourceLanguage": "en"
      }
    ]
  }
}

0 个答案:

没有答案