gpt4 book ai didi

reactjs - 类型错误 : Cannot read property 'get' of undefined with useEffect and Axios

转载 作者:行者123 更新时间:2023-12-04 00:57:03 27 4
gpt4 key购买 nike

我正在尝试在 React Hook 中获取一些数据。这里没什么特别的,只是一些加载文本,然后在我的数据加载后替换。

但我一直点击我的 catch block 并得到 Failed to fetch data: Cannot read property 'get' of undefined TypeError: Cannot read property 'get' of undefined 打印到控制台。

import React, { useState, useEffect } from "react";
import { axios } from "axios";

const DataPanel = () => {
let [isLoading, setLoading] = useState(false);
let [data, setData] = useState();

useEffect(() => {
async function getData() {
let response;
setLoading(true);
try {
response = await axios.get("urltosomewhere");
setData(response);
} catch (e) {
console.log(`Failed to fetch data: ${e.message}`, e);
return;
} finally {
setLoading(false);
}
}

getData();
});

return (
<div>
<div>{isLoading ? <span>Loading...</span> : <span>{data}</span>} </div>
</div>
);
};

export default DataPanel;

最佳答案

您需要import axios from 'axios',而不是import { axios } from 'axios'

这是因为 axios 模块默认导出 axios 类。它不是命名导出,因此无法使用您尝试的方法导入。

关于reactjs - 类型错误 : Cannot read property 'get' of undefined with useEffect and Axios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61663293/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com