我有一个ngFor循环中的元素列表.刷新页面时,仅加载第一个元素数据.当我单击一个空元素时,数据会突然弹出.只有在Safari中查看时才会发生这种情况 如何让Safari加载所有内容?
<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>
Run Code Online (Sandbox Code Playgroud)
数据来自一个提供JSON的API.