首页 > 技术文章 > JS 异步获取天气接口

grootbaby 2019-08-08 14:50 原文

getWeather(){
    fetch('https://www.tianqiapi.com/api/?version=v1&cityid=101020100&city=上海&ip=&callback=')
        .then(res => res.json())
		.then(data => {
			let result = data.data;
		})
	.catch(err => console.log('getWeather error'))
}

 

推荐阅读