微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用HTTP代理中间件在reactjs应用程序中无法识别setupProxy.js路径

如何解决使用HTTP代理中间件在reactjs应用程序中无法识别setupProxy.js路径

我在我的react应用中实现了http代理中间件,我的setupProxy.js路径无法识别。下面是我的代码,如果我做错任何事情,请告诉我。

应用程序组件

class App extends React.Component {
  test = () => {
// I dont have any thing which is running in "/api"  
// Simply called fetch with "/api" because setupPorxy.js  is looking my request or not 
    fetch("/api")
      .then(res => {
        alert('test pri')
        console.log('res',res)
      })
  }
  render() {
    return (
      <div className="App">
        <button onClick={this.test}>Test</button>
      </div>
    );
  }
}

setupProxy.js

const { createProxyMiddleware } = require('http-proxy-middleware');

\\ I dont have any thing running on localhost 5000,want to check the request is modified or not 

module.exports = (app) => {
    app.use(createProxyMiddleware('/api',{ target: 'http://localhost:5000',changeOrigin: true }));
}

输出

But ended with 404 not found in browser console like http://localhost:3000/api (404 not found)

enter image description here

当我启动应用程序时,有如下所示的日志,但没有替换目标

enter image description here

解决方法

通过您的代码,我可以看到您使用过create-react-app。您尚未显示package.json。您添加了代理吗?我想您可能已经错过了。

package.json

{
   ....
   "proxy": "http://localhost:5000",}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。