数据源需要绑定在更嵌套的循环中。
<div *ngFor="let singleImg of training.exercise.pictureList; let t = index">
<dx-gallery #gallery
id="gallery"
[dataSource]="singleImg.url"
[loop]="true"
[height]="300"
[showNavButtons]="true"
[showIndicator]="true"
></dx-gallery>
</div>
我在 training.exercise.pictureList 之前有一个循环,但这对你来说并不重要。我知道在 .ts 文件中循环并在此处绑定数组,但总是打印相同的照片...这里可能是绑定索引的问题