gpt4 book ai didi

reactjs - 在 createError 中 react 原生错误 : node_modules/axios/lib/core/createError. js:16:24

转载 作者:行者123 更新时间:2023-12-04 17:41:16 24 4
gpt4 key购买 nike

我写了这个函数

fetchWeather(){
axios.get(`http://api.openweathermap.org/data/2.5/forecast/daily?q=${this.state.city},uk&APPID=3a31a881817a041a63eac1c1bbbba705`)
.then((response)=>{
this.setState({report:response.data})
}).catch((error)=>console.log(error))
}

并收到此错误:

node_modules/axios/lib/core/createError.js:16:24 in createError - node_modules/axios/lib/core/settle.js:19:6 in settle - ... 10 more stack frames from framework internals

最佳答案

根据 axios GitHub代码(axios/lib/core/settle.js):

reject(createError(
'Request failed with status code ' + response.status,
response.config,
null,
response.request,
response
));

由于状态代码无效(很可能是 HTML 401),响应被拒绝。检查您的 api key 是否仍然有效,或在 postman 中测试您的 URL。

编辑:以下是基于新 URL 的工作代码片段

class Hello extends React.Component {
constructor() {
super();
this.state={
report: null,
};
}

componentDidMount() {
axios.get(`https://api.openweathermap.org/data/2.5/weather?q=London,uk&APPID=3a31a881817a041a63eac1c1bbbba705`)
.then((response)=>{
this.setState({report:response.data});
console.log(response.data);
}).catch((error)=>console.log(error))
}

render() {
return <div>Report: {JSON.stringify(this.state.report)}</div>;
}

}

ReactDOM.render(
<Hello />,
document.getElementById('container')
);
<script src="https://unpkg.com/axios@0.16.1/dist/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>

<div id="container">

</div>

关于reactjs - 在 createError 中 react 原生错误 : node_modules/axios/lib/core/createError. js:16:24,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54401453/

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