Angular 2 beta:ngFor和表达式

时间:2016-02-19 02:57:25

标签: angular ngfor

我在组件中使用以下代码,虽然使用正确的值设置了位置,但没有任何渲染:

<div class="row" *ngFor="#dailyForecast of location.forecast.list">
    <h4>{{dailyForecast.dt * 1000 }} </h4>
</div>

我猜Angular 2无法处理location.forecast.list,尽管它是我的TypeScript组件类中的有效对象数组。

1 个答案:

答案 0 :(得分:1)

请提供更多代码。

你应该处理&#39; location == null&#39;和&#39; dailyForecast == null&#39;

尝试这些代码:

<div class="row" *ngFor="#dailyForecast of location?.forecast?.list">
    <h4>{{dailyForecast?.dt * 1000 }} </h4>
</div>