- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了这个函数
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
));
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/
我写了这个函数 fetchWeather(){ axios.get(`http://api.openweathermap.org/data/2.5/forecast/daily?q=${thi
我想测试我的应用程序并从 api 获取数据。当我登录到网络时,我会检查 network 选项卡,该选项卡会在 headers 中返回我的 request url,例如: https://beta.ap
大家好,我是 node js、mongo db 的新手。我使用此链接创建了一个 crud 应用程序:https://www.positronx.io/mean-stack-tutorial-angul
大家好,我是 node js、mongo db 的新手。我使用此链接创建了一个 crud 应用程序:https://www.positronx.io/mean-stack-tutorial-angul
新人在这里 react 。我收到这个错误:xhr.js:177 POST https://localhost:44355/api/people/addperson 400,我不知道为什么。我检查了所有
我是一名优秀的程序员,十分优秀!