JS跨域解决方案react配置反向代理
作者:tby_37
这篇文章主要为大家介绍了JS跨域解决方案react配置反向代理的示例内容详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步
跨域解决方案
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配置反向代理的资料请关注脚本之家其它相关文章!