中国天气预报调用方法
功能:记录下调用天气接口的方法
中国天气https://cj.weather.com.cn/plugin/index
<div id="weather-v2-plugin-simple" />
在mounted中复制中国天气提供的代码进去
window.WIDGET = {
CONFIG: {
'modules': '01234',
'background': 1,
'tmpColor': 'FFFFFF',
'tmpSize': 16,
'cityColor': 'FFFFFF',
'citySize': 16,
'aqiSize': 16,
'weatherIconSize': 24,
'alertIconSize': 18,
'padding': '10px 10px 10px 10px',
'shadow': '1',
'language': 'auto',
'borderRadius': 5,
'city': 'CN101010100',
'fixed': 'false',
'vertical': 'middle',
'horizontal': 'center',
'key': '7b8CMHqKLf'
}
}
const script = document.createElement('script')
script.type = 'text/javascript'
script.src = 'https://apip.weatherdt.com/simple/static/js/weather-simple-common.js?v=2.0'
document.getElementsByClassName('everyDays-wrap')[0].appendChild(script)