我正在尝试使用天气 api 获取特定位置的当前温度。我想使用天气 api 的响应并使用 react 存储在 State 中。
我的问题是我在遍历 json 数据时总是出错。
WeatherApp.js:53 Uncaught TypeError: Cannot read property 'temp_c' of undefined
这是我记录到控制台的 json 响应数据。
这里的每个请求是来自 weather.current 的响应
代码:
import React, { useEffect, useState } from "react";
import Axios from "axios";
function WeatherApp() {
const [weather, setWeather] = useState([]);
useEffect(() => {
async function getWeather() {
Axios.get(
"https://api.weatherapi.com/v1/current.json?key=xxxx&q=40507"
)
.then(response => {
setWeather(response.data);
})
.catch(e => console.log("There was an error that occurred."));
}
getWeather();
}, []);
return (
<div>
<h1>hello!</h1>
{console.log(weather.current.temp_c)}
// I am able to print to the console when i do the following
{console.log(weather.curret)}
</div>
);
}
export default WeatherApp;
我没有正确遍历 json 数据吗?
胡说叔叔
人到中年有点甜
相关分类