我似乎被迫添加一个假部分来激活ngx-fullpage的ngFor循环的其余部分(参见第34行;我是否需要这个")。我不明白为什么,我已经尝试删除特定课程,但似乎没有任何帮助。
<div mnFullpage [mnFullpageNavigation]="true"
[mnFullpageSlidesNavPosition]="false">
<div id="section0" class="section fp-section fp-table"></div> <!-- Do I need this-->
<div [attr.id]="'section' + i " class="section fp-section fp-table"
*ngFor="let item of items; let i = index">
<h2> {{item.name}}</h2>
<span>
<img
[src]="item.imagePath"
alt="{{item.name}}"
class="img-responsive">
</span>
</div>
</div>
</div>