javascript - 我无法在 create-react-app 中配置代理

标签 javascript reactjs webpack proxy create-react-app

我是 React 初学者,我正在根据 React 文档开发一个项目。

后台api服务器创建为node.js,PM2管理为http://localhost:4005。 前端使用create-react-app创建项目。

为了引用后端的api,我设置代理设置引用this manual .

我尝试了 package.json 代理配置和使用 http-proxy-middleware 的手动配置,但都没有用。

代理已配置,但 webpack dev-server 调用自身,如下所示。

enter image description here

yarn 开始消息( react )

You can now view client in the browser.

  Local:            http://localhost:63323/
  On Your Network:  http://172.30.1.13:63323/

Note that the development build is not optimized.
To create a production build, use yarn build.

[HPM] Error occurred while trying to proxy request /api/getList from localhost:63323 to http://localhost:4005/ (ETIMEDOUT) (https://nodejs.org/api/errors.html#errors_common_system_errors)

浏览器控制台消息:

List.js:19 GET http://localhost:63323/api/getList 
net::ERR_CONNECTION_REFUSED
list:1 Uncaught (in promise) TypeError: Failed to fetch

(63323端口是react指定的端口)

我的项目目录如下所示:

enter image description here

Express 服务器 index.js

const express = require('express');
const path = require('path');

const app = express();

// Serve the static files from the React app
app.use(express.static(path.join(__dirname, 'client/build')));

// An api endpoint that returns a short list of items
app.get('/api/getList', (req,res) => {
    var list = ["item1", "item2", "item3"];
    console.log('Sent list of items:',list);
    res.json(list);
});


// Handles any requests that don't match the ones above
app.get('*', (req,res) =>{
    console.log('node -> react index.html');
    res.sendFile(path.join(__dirname+'/client/build/index.html'));
});

const port = process.env.PORT || 4005;
app.listen(port);

console.log('App is listening on port ' + port);

React View list.js

import React, { Component } from 'react';

class List extends Component {
    // Initialize the state
    constructor(props){
        super(props);
        this.state = {
            list: []
        }
    }

    // Fetch the list on first mount
    componentDidMount() {
        this.getList();
    }

    // Retrieves the list of items from the Express app
    getList = () => {
        fetch('/api/getList')
            .then(res => {
                console.log('res!');
                res.json();
            })
            .then(list => {
                console.log('fetch list : ', list);
                this.setState({ list });
            })
    }

    render() {
        const { list } = this.state;

        return (
            <div className="App">
                <h1>List of Items</h1>
                {/* Check to see if any items are found*/}
                {list.length ? (
                    <div>
                        {/* Render the list of items */}
                        {list.map((item) => {
                            return(
                                <div>
                                    {item}
                                </div>
                            );
                        })}
                    </div>
                ) : (
                    <div>
                        <h2>No List Items Found</h2>
                    </div>
                )
                }
            </div>
        );
    }
}

export default List;

包.json

{
  "name": "client",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "http-proxy-middleware": "^0.19.1",
    "react": "^16.7.0",
    "react-dom": "^16.7.0",
    "react-router-dom": "^4.3.1",
    "react-scripts": "2.1.3"
  },
  "scripts": {
    "start": "PORT=4001 react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ],
  "proxy": "http://localhost:4005"
}

这与我称为 example 的帖子没有什么不同,但我想知道我错过了什么。

最佳答案

我认为你需要返回 res.json()

    fetch('/api/getList')
        .then(res => {
            console.log('res!');
            return res.json(); // Must be returned
        })
        .then(list => {
            console.log('fetch list : ', list);
            this.setState({ list });
        })

关于javascript - 我无法在 create-react-app 中配置代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54213214/

相关文章:

javascript - 如何从异步调用返回响应?

javascript - 单选按钮/复选框/选择选项 - 添加所选项目的总价格(值),并将它们添加到数组中

javascript - 如何处理更改 TextInput 组件?

node.js - 为什么 webpack 会多出 10,000 行?

javascript - WebStorm JS 库 TypeScript 社区 stub 未显示列表

javascript - 在 React Context 中更新嵌套状态的最佳方法

javascript - 如何在没有 axios 的情况下用纯 JavaScript 设置 token 的全局 header

express - 如何为 webpack 模板添加后端?

cordova - 使用 Cordova + Onsen + React 进行初始项目设置的分步指南

javascript - 如何在发送 JSON 时格式化 Base64 编码的字符串