0
有一組對象。我理清了它的循環。 在這兩個系列中獲取圖像的鏈接? vm.data.list-對象數組。 Loop:編寫循環中的鏈接
<tr ng-repeat="item in vm.data.list">
<td ng-bind="item.temp.day"></td>
<td ng-bind="vm.symbal"></td>
<td ng-bind-template="{{ item.humidity }} %"></td>
</tr>
在獲取鏈接到圖像的週期? (http://openweathermap.org/img/w/vm.data.list[0].weather[0].icon.png,http://openweathermap.org/img/w/vm.data.list[1].weather[0].icon.png等)
我試着這樣做:
<tr ng-repeat="item in vm.data.list">
<td ng-bind="item.temp.day"></td>
<td ng-bind="vm.symbal"></td>
<td ng-bind-template="{{ item.humidity }} %"></td>
<!-- <td img ng-src="http://openweathermap.org/img/w/{{item.weather[0].icon.png}}">-->
<td> <img src=http://openweathermap.org/img/w/{{item}}.weather[0].icon.png></td>
</tr>
喜歡這個?
喜歡這個?
看到我編輯的答案。整個角度表達式應該在{{}}中。 – Derlin