我有一个 JSON 对象,如下所示:
{
"sessions": [
{
"title": Session Title,
"room": "Ballroom A"
},
{
"title": Session Title #2,
"room": "Ballroom B"
}
],
"speakers": [
{
"name": John Doe,
"twitter": "jdoe"
},
{
"name": John Smith,
"twitter": "jsmith"
}
]
}
我正在尝试绑定到对象的会话子项。完整的对象在一个名为 conferenceData 的变量中,我用来显示标题的代码是:
<div *ngFor="#session of conferenceData.sessions">{{session.title}}</div>
当我这样做时,我收到错误:TypeError: Cannot read property 'sessions' of undefined in [conferenceData.sessions in ProductListComponent@65:17]
如果我将孩子分配给一个变量:
this.sessionData = this.conferenceData.sessions;
然后绑定到 sessionData 变量,它按预期工作。这是使用 TypeScript 和 Angular 2。我想这可能是 TypeScript 的类型问题,但我认为此时它都是 JavaScript。任何帮助,将不胜感激。
谢谢!