JS cross-domain solution react configuration reverse proxy

JS cross-domain solution react configuration reverse proxy

Cross-domain solutions

jsonp (simulate get)

CORS (Cross-Origin Resource Sharing)

acting

iframe

postMessage

window.name

WebSocket

React's proxy implements cross-domain

Configure in src/setupProxy.js file and install http-proxy-middleware, proxy middleware module through npm

Create src/setupProxy.js

Installing the Module

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': ''
    }
  }))
} 

The above is the details of JS cross-domain solution react configuration reverse proxy. For more information about react configuration reverse proxy, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • React build post-packaging and release summary
  • How to implement cors cross-domain request of fetch in react
  • Tutorial on how to configure React static pages with nginx
  • JS cross-domain solution: using CORS to achieve cross-domain

<<:  How to implement line breaks in textarea text input area

>>:  25 div+css programming tips and tricks

Recommend

How to change the default character set of MySQL to utf8 on MAC

1. Check the character set of the default install...

Summary of 28 common JavaScript string methods and usage tips

Table of contents Preface 1. Get the length of a ...

Vue realizes the sliding cross effect of the ball

This article example shares the specific code of ...

How to create a view on multiple tables in MySQL

In MySQL, create a view on two or more base table...

MySQL 8.0.18 installation and configuration method graphic tutorial

This article records the installation and configu...

vue-pdf realizes online file preview

This article example shares the specific code of ...

The use of setState in React and the use of synchronous and asynchronous

In react, if you modify the state directly using ...

Detailed explanation of non-parent-child component communication in Vue3

Table of contents First method App.vue Home.vue H...

Several ways to submit HTML forms_PowerNode Java Academy

Method 1: Submit via the submit button <!DOCTY...

Tips for using top command in Linux

First, let me introduce the meaning of some field...

What is a MySQL index? Ask if you don't understand

Table of contents Overview From Binary Tree to B+...