js获取天气
时间: 2023-07-25 21:11:46 浏览: 106
js 获取天气预报
要获取天气信息,你需要使用第三方天气 API。以下是一个使用 OpenWeatherMap API 获取天气信息的示例:
```javascript
const apiKey = 'your_api_key';
const city = 'your_city_name';
const url = `https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${apiKey}&units=metric`;
fetch(url)
.then(response => response.json())
.then(data => {
console.log(`Current temperature in ${city}: ${data.main.temp}°C`);
})
.catch(error => console.error(error));
```
在上面的代码中,你需要将 `your_api_key` 替换为你自己的 OpenWeatherMap API Key,将 `your_city_name` 替换为你想要查询天气的城市名称。通过调用 `fetch` 方法来获取 API 返回的 JSON 数据,然后解析数据并输出当前城市的温度信息。
阅读全文