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配置反向代理的資料請關註WalkonNet其它相關文章!

推薦閱讀: