我正在尝试获取开放天气地图API的国家/地区标志图标: 示例:http://openweathermap.org/images/flags/br.png
从api请求返回的国家/地区代码json为大写, 要获取正确的国家/地区图标,我需要使用相同的国家/地区代码,但小写字母
这就是我尝试过的:
<img src="http://openweathermap.org/images/flags/{{lowerCase(weather.sys.country)}}.png">
答案 0 :(得分:0)
命令是toLowerCase,它是一个字符串函数。
<img src="http://openweathermap.org/images/flags/{{weather.sys.country.toLowerCase()}}.png">