我有一个ngFor循环中的元素列表.刷新页面时,仅加载第一个元素数据.当我单击一个空元素时,数据会突然弹出.只有在Safari中查看时才会发生这种情况如何让Safari加载所有内容?
原文链接:https://www.f2er.com/angularjs/141794.html<article *ngFor="let item of list; let i = index"> <section class="item__content"> <h3 class="item__name"> <a href="#">{{item.name}}</a> </h3> <p> {{item.description}} </p> </section> </article>
数据来自一个提供JSON的API.