我阅读了一些在显示图像数组时使用ng-src的解决方案,但似乎不起作用。数组中只有1个项目可以显示。有什么解决办法吗?我也尝试过img [src]
,但没有一个工作。
这是我尝试过的
angular.module('selectExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.register = {
regData: {
branch: {},
},
names: [{
name:"narquois",
image:[
"https://picsum.photos/200",
"https://picsum.photos/200/300/?random"]
},
{
name:"velvet",
image:[
"https://picsum.photos/200"]
}],
};
}]);
img{
width:70px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.7.5/angular.min.js"></script>
<div ng-app="selectExample" ng-controller="ExampleController">
<table id="example" width="100%">
<thead>
<tr align="center">
<th>Name</th>
<th>Image</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="person in register.names">
<td align="center">{{ person.name }}</td>
<td align="center"><img ng-src="{{ person.image }}"></td>
</tr>
</tbody>
</table>
</div>
答案 0 :(得分:2)
您当前不在循环播放其他图片。
尝试用此替换ng-repeat,看看这是否是您想要的效果。
<tr ng-repeat="person in register.names track by $index">
<td align="center">{{ person.name }}</td>
<td align="center">
<img ng-repeat="image in person.image" ng-src="{{image}}" />
</td>
</tr>