Я пытаюсь получить объект из массива, который вложен в объект в файле json.
Файл Json:
{
"success": {
"total": 1
},
"contents": {
"quotes": [
{
"quote": "You can’t succeed coming to the potluck with only a fork.",
"author": "Dave Liniger",
"length": "64",
"tags": [
"inspire",
"team-building",
"tso-funny",
"working-with-people"
],
"category": "inspire",
"title": "Inspiring Quote of the day",
"date": "2018-05-05",
"id": null
}
],
"copyright": "2017-19 theysaidso.com"
}
}
Я пытаюсь получить цитату, вложенную в кавычки.
Пока я пробовал это:
<ion-list>
<ion-item *ngFor="let c of contents"></ion-item>
<ion-item *ngFor="let q of c['quotes']">
<h2>{{ q.quote }}</h2>
</ion-item>
Однако я продолжаю получать «невозможно получить свойство« кавычек »с неопределенной или нулевой ссылкой»
Что я делаю не так?