1
我使用Spring-Boot和Angular創建基於API的openweather.com的天氣web應用。 我也使用這個weather-icons包。 在我的HTML文件的天氣圖標會顯示如下:基於數據值的HTML圖標映射
<div class="jumbotron">
<i class="wi wi-snow" style="font-size: 8em;"></i>
<i id="description">{{weather.weatherID}}</i>
</div>
隨着API的幫助下,我也有在HTML提供氣象碼值。
比方說,我有一個文件weather.data與天氣代碼映射到圖標描述是這樣的:
601: snow
602: sleet
611: rain-mix
是否有可能基於在數據文件中值HTML顯示某些圖標? 我想要做的是一樣的東西:
<div class="jumbotron">
<i class="wi wi-{{weatherDescription}}" style="font-size: 8em;"></i>
</div>
如果數據文件很小,如上(只有3條記錄),你可以用「ng-class」 –