gpt4 book ai didi

node.js - 本地主机在 React 组件编辑时返回 ERR_CONNECTION_REFUSED

转载 作者:太空宇宙 更新时间:2023-11-04 01:26:04 25 4
gpt4 key购买 nike

我使用MEAN堆栈、nodemonParcel。每次当我编辑前端代码时,axios都会返回net::ERR_CONNECTION_REFUSED,我需要重新加载页面1-3次才能避免此错误。是什么原因造成的?

这是我的请求代码:

 componentDidMount(){
Axios.get('http://localhost:5000/')
.then((res) => {
let newState = Object.assign({}, this.state);
newState.taskList = res.data;
this.setState(newState);
});
}

最佳答案

您可以使用 postman 等工具测试您的调用,错误可以从您的服务器提供,您还可以通过捕获错误来获取更多信息,例如

 Axios.get('http://localhost:5000/')
.then((res) => {
let newState = Object.assign({}, this.state);
newState.taskList = res.data;
this.setState(newState);
})
.catch((err)=>console.log(err));

关于node.js - 本地主机在 React 组件编辑时返回 ERR_CONNECTION_REFUSED,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57480292/

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