JS跨域解决方案react配置反向代理
程序员文章站
2022-09-17 08:11:18
跨域解决方案 jsonp(模拟get)cors(跨域资源共享)代理iframepostmessagewindow.namewebsocketreact的代理实现跨域在配置在src/setupprox...
跨域解决方案
jsonp(模拟get)
cors(跨域资源共享)
代理
iframe
postmessage
window.name
websocket
react的代理实现跨域
在配置在src/setupproxy.js文件,并通过npm安装http-proxy-middleware,代理中间件模块
创建 src/setupproxy.js
安装模块
npm i -s http-proxy-middleware
const {createproxymiddleware: proxy} = require('http-proxy-middleware') module.exports = app => { app.use('/api', proxy({ target: 'http://localhost', changeorigin: true, pathrewrite: { '^/api': '' } })) }
以上就是js跨域解决方案react配置反向代理的详细内容,更多关于react配置反向代理的资料请关注其它相关文章!
上一篇: Android脑图
下一篇: HDU4597(博弈dp)