Coriolan161 спасибо за совет.
А как из JSON (поля weather.icon) получить стоку вида
<img src='http://openweathermap.org/img/w/13d.png' alt='Icon depicting current weather.'>
где 13d ноходяться в weather.icon
Пробовал как
vm.URL2="http://openweathermap.org/img/w/"+vm.data.weather.icon+".png";
, но н евыходит.
Код:
http://jsbin.com/sofonovura/edit?html,js,console,output
Решение найдено, если кому понадобиться:
<h1><b>{{vm.data.city.name}}</b></h1>
<h1><b>{{vm.data.city.country}}</b></h1>
<font color="red"> <h1><b>temp.day:</b><h1> </font>
<h1><b>{{vm.data.list[0].temp.day}}</b></h1>
<font color="red"> <h1><b>weather.main:</b><h1></font>
<h1><b>{{vm.data.list[0].weather[0].description}}</b></h1>
<!-- влажность работает-->
<font color="red"> <h1><b>humidity:</b><h1></font>
<h1><b>{{vm.data.list[0].humidity}}</b></h1>
<font color="red"> <h1><b>
{{vm.data.list[0].weather[0].description}}