天气预报没广告到桌面上 (天气预报没广告)

长沙桑拿 07-30 阅读:2 评论:4
javascript const app = new Vue({el: 'app',data: {city: '',weather: null,loading: false,},methods: {submit() {this.loading = true;fetch(`${this.city}&units=metric&appid=${API_KEY}`).then(res => res.json()).then(data => {this.weather = data;this.loading = false;}).catch(err => {console.error(err);alert('获取天气信息失败,请检查网络连接或城市名称是否正确。');});},},template: `
城市:{{ weather.name }}
天气预报没广告到桌面上 (天气预报没广告)
天气:{{ weather.weather[0].description }}
温度:{{ weather.main.temp }}°C
湿度:{{ weather.main.humidity }}%
风速:{{ weather.wind.speed }}m/s
加载中...
请输入城市名称查询天气信息。
`, });
版权声明

本文仅代表作者观点,不代表长沙桑拿立场。
本文系作者授权发表,未经许可,不得转载。