node 和 reactjs axios 服务器请求返回 index.html 文件而不是 json

IT技术 node.js reactjs api express axios
2021-05-15 01:55:47

我已经使用由 webpack 编译的 react 前端以及在 node 和 express 上运行的服务器设置了我的项目。

当我部署到生产环境时,我对服务器的请求返回的是“dist”文件夹中的 index.html 文件,而不是带有数据的 json。

我的 webpack 编译输出位于 ./dist 位置。

这是我的 server.js 文件的路由部分:

if (process.env.NODE_ENV === 'production') {
  app.use(express.static('dist'));
  const path = require('path');
  app.get('/', (req, res) => {
    res.sendFile(path.resolve(__dirname, 'dist', 'index.html'));
  });
}
// Use our router configuration when we call /
app.use('/', router);

这是我的 webpack 配置文件的一部分:

var HtmlWebpackPlugin = require('html-webpack-plugin');
var HTMLWebpackPluginConfig = new HtmlWebpackPlugin({
  template: __dirname + '/client/index.html',
  filename: 'index.html',
  inject: 'body'
});

module.exports = {
  entry: [
    './client/index.js'
  ],
  output: {
    path: __dirname + '/dist',
    filename: 'index_bundle.js'
  },
  devServer: {
    inline: true,
    contentBase: './dist',
    port: 8080,
    proxy: { '/api/**': { target: 'http://localhost:3000', secure: false } }
  },
  module: {
    loaders: [
      {test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader', query: {presets: ['es2015','react'], plugins: ['transform-es2015-destructuring', 'transform-object-rest-spread']}},
        {test: /\.jpe?g$|\.gif$|\.svg$|\.png$/i, loader: 'file-loader?name=/images/[name].[ext]'},
        {test: /\.css$/, loaders: ['style-loader', 'css-loader', 'postcss-loader', 'sass-loader','resolve-url-loader']},
        {test: /\.scss$/, loaders: ['style-loader', 'css-loader','postcss-loader', 'sass-loader','resolve-url-loader']}
        ]
  },
  plugins: [HTMLWebpackPluginConfig]
};

我的请求如下(api 路由 /api/chefs 返回一个带有用户配置文件的 json(在开发中测试):

export function listChefs() {
  return function (dispatch) {
    axios.get('/api/chefs')
      .then((response) => {
        dispatch({
          type: LIST_CHEFS,
          payload: response.data
        });
      })
      .catch((err) => {
        errorHandler(dispatch, 'There was a problem. Please refresh and try again.');
      });
  };
}

似乎我使用 axios 从我的客户端发出的调用实际上是访问了未被识别的 api url,因此被重定向到简单的服务器 index.html 文件。

有什么帮助吗?

干杯

2个回答

也许这是违规行:

app.get('/*', (req, res) => {
    res.sendFile(path.resolve(__dirname, 'dist', 'index.html'));
});

因为这可以满足您的所有要求。如果您更改/*/是否可以解决它?

我认为该请求无法发送到您的路由器,因为它会/*捕获所有请求并返回 index.html 页面。

尝试:

app.get('/', (req, res) => {
    res.sendFile(path.resolve(__dirname, 'dist', 'index.html'));
});

根据webpack 文档,您可以指定代理设置如下

proxy: {
  "/api": {
    target: "https://other-server.example.com",
    secure: false
  }
}

注意“/api”而不是“/api/**”。

此外,值得注意的是,他们建议path.join(__dirname, "dist")对 contentBase 设置使用绝对路径 via