0
オブジェクトの配列があります。私はそのループから抜け出す。 両方のシリーズで画像へのリンクを取得しますか? vm.data.list-オブジェクトの配列。 ループ:画像へのリンクを得ることのサイクルと同様にループ内のリンクの準備
<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及びその他)
私はそうしてみました:https://docs.angularjs.org/api/ng/directive/ngSrc:
<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