Two practical ways to enable proxy in React

Two practical ways to enable proxy in React

Two ways to enable proxy

React does not have encapsulated ajax request code for us to use directly. When interacting, we need to encapsulate the ajax code ourselves or use a third-party ajax library. Generally, we use axios (lightweight).

Why do we need an agent?

For example, when writing a server with port 5000 locally, when we make a request through port 3000, there will be a cross-domain problem (the original ajax engine of port 3000 intercepts the response). At this time, the problem can be solved by using a proxy. The so-called proxy is a tool for transmitting information. The request with port 3000 is sent to the proxy opened on port 3000, and the proxy forwards it to the server on port 5000. When responding, since the proxy does not have an ajax engine, it can receive the response and then pass it to the scaffolding opened on port 3000, thus solving the cross-domain problem.

Two ways to open the proxy in react

Method 1

Add "proxy": "https://localhost:5000" to the package.json file. After that, resources not available on port 3000 will be found on port 5000. That is to say, requests sent to port 3000 will be forwarded to the server on port 5000, but if the requested object is already available on port 3000, it will not be forwarded to port 5000.

This method can only find one, but if you want to find not only port 5000 but also other port numbers (configure multiple proxies), you should use the following method.

Method 2

Add a setupProxy file in src (react scaffolding will find this file), copy the following code

After configuration, you need to add /api1 to the address localhost:3000 where the request was sent before. This means that if the requested resource is not found on port 3000, the proxy configured by api1 will be used to access port 5000. If you want to configure multiple proxies, separate them with commas.

changeOrigin is used to control the value of the Host field in the response header received by the server. Here, if the default value is false, the server will think that the request comes from port 3000; but if its value is set to true, the server will think that the request comes from port 5000 (which it is not). You don’t have to write this, but it’s best to write it.

The request path is rewritten during pathWrite. In fact, the proxy is found through /api at the beginning, but when the proxy makes a request to port 5000, /api must be removed, such as https://localhost:3000/api/student. If api is not removed, the request address is equivalent to /api/students, but in fact the address we want to request should be /student.

const proxy = require('http-proxy-middleware');
​
module.exports = function (app) {
    app.use(
        proxy('/api1', {
            target: 'http://localhost:5000',
              changeOrigin: true, // default value is false
            pathRewrite: { '^/api1': '' }
         }),
        proxy('/api2', {
            target: 'http://localhost:5001',
            changeOrigin: true, // default value is false
            pathRewrite: { '^/api2': '' }
       }),
   )
}

Summarize

This concludes this article about the two ways to enable proxy in React. For more information about how to enable proxy in React, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  CentOS 6 uses Docker to deploy Zookeeper operation example

>>:  MySql quick insert tens of millions of large data examples

Recommend

How to understand Vue's simple state management store mode

Table of contents Overview 1. Define store.js 2. ...

A brief discussion on VUE uni-app custom components

1. Parent components can pass data to child compo...

Test and solution for MySQL's large memory usage and high CPU usage

After the changes: innodb_buffer_pool_size=576M -...

MySQL 8.0.17 installation graphic tutorial

This article shares with you the MySQL 8.0.17 ins...

A practical record of checking and processing duplicate MySQL records on site

Table of contents Preface analyze Data Total Repe...

Zookeeper stand-alone environment and cluster environment construction

1. Single machine environment construction# 1.1 D...

Introduction to the process of installing MySQL 8.0 in Linux environment

Table of contents Preface 1. Linux changes the yu...

Tutorial on configuring and using i3 window manager in Linux

In this article, I will show you how to install a...

One question to understand multiple parameters of sort command in Linux

The sort command is very commonly used, but it al...

javascript to switch pictures by clicking a button

This article example shares the specific code of ...

How to parse the attribute interface of adding file system in Linux or Android

The first one: 1. Add key header files: #include ...

The benefits and examples of placing the site map at the bottom of the web page

In the past, almost every website had a sitemap p...

Implementation of setting fixed IP when starting docker container

Network type after docker installation [root@insu...

Detailed steps for using AES.js in Vue

Use of AES encryption Data transmission encryptio...