gpt4 book ai didi

json - MERN 与 axios 堆栈,响应对象返回 html 而不是 json

转载 作者:行者123 更新时间:2023-12-01 20:26:52 25 4
gpt4 key购买 nike

因此,我正在设置一个 5 天天气预报 Web 应用程序,用于练习使用 MERN 堆栈与 API 进行交互。我使用 Axios.js 发送和响应请求;为了确保我的后端正常工作,我在开始与 API 通信之前首先开始构建后端。但是,我在前端设置的按钮(向我的服务器发送 get 请求以获取 json 数据)始终返回一个响应对象,其 response.data 的值为:

RESPONSE: <!doctype html>
<html>
<head>
<meta name="viewport" charset="UTF-8" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="app"></div>
<script src="./dist/bundle.js"></script>
</body>
</html>

而不是

RESPONSE: "hello there!"

JavaScript 看起来像这样:

{data: "hello there!"}

我知道在发送和接收这些请求时我可能错过了一个步骤,但在对此进行研究后,我仍然不确定为什么我没有收到预期的结果。我的文件设置如下:

-weather_forcast
-client
-src
-components(empty)
app.jsx
-public
-dist
bundle.js
index.html
-server
-routes
routes.js
index.js
package.json
webpack.config.js

当前包含代码的文件的内容是:

app.jsx

    import React, {Component} from 'react';
import ReactDOM, {render} from 'react-dom';
import axios from 'axios';
// import daysOfWeek from './daysOfWeek.jsx';

class App extends Component {
constructor() {
super();
this.state = {
}
this.getData = this.getData.bind(this);
}

getData() {
axios.get('/')
.then((response) => {
console.log("RESPONSE:", response.data);
})
.catch((error) => {
console.log(error);
})
}

render() {
return(
<div>
<button onClick={this.getData}>Hello world</button>
</div>
)
}
}

render(<App/>, document.getElementById('app'));

index.html

<!doctype html>
<html>
<head>
<meta name="viewport" charset="UTF-8" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="app"></div>
<script src="./dist/bundle.js"></script>
</body>
</html>

routes.js

let express = require('express');
let router = express.Router();

router.get('/', (req, res) => {
res.send({data:'hello there!'});
});

module.exports = router;

index.js

const express = require('express');
const fs = require('fs');
const path = require('path');
const bodyParser = require('body-parser');
const router = require('./routes/routes.js');
const app = express();
let port = 8000;

app.use(bodyParser.urlencoded());
app.use(bodyParser.json());
app.use(express.static(path.join(__dirname, '../public')));

app.use('/', router);

app.listen(port, () => {
console.log(`express is listening on port ${port}`);
});

webpack.config.js

const path = require('path');
const SRC_DIR = path.join(__dirname, '/client/src');
const DIST_DIR = path.join(__dirname, '/public/dist');

module.exports = {
entry: `${SRC_DIR}/app.jsx`,
output: {
filename: 'bundle.js',
path: DIST_DIR
},
module: {
rules: [
{
test: /\.jsx?/,
include: SRC_DIR,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react']
}
}
}
]
}
}

在我添加“routes”文件夹并设置我的 index.js 文件之前,同样的问题也出现了,如下所示:

const express = require('express');
const fs = require('fs');
const path = require('path');
const bodyParser = require('body-parser');
const router = require('./routes/routes.js');
const app = express();
let port = 8000;

app.use(bodyParser.urlencoded());
app.use(bodyParser.json());
app.use(express.static(path.join(__dirname, '../public')));

app.get('/', (req, res) => {
res.send({data: "hello there!"});
);

app.listen(port, () => {
console.log(`express is listening on port ${port}`);
});

任何帮助将不胜感激!我似乎无法将 json 对象作为数据发送到前端,但我不确定此设置中缺少什么。

最佳答案

您收到的响应似乎表明开发服务器正在为您提供 React 应用程序(请注意这一行: <script src="./dist/bundle.js"></script> )。

当您在不同端口上同时运行两个服务器(例如 webpack 开发服务器和 Express 应用程序)时,您有几个选项来处理它们。

1) CORS 使用完整地址向您的其他服务器发出请求:

"http://localhost:8000/<path>"

通常不建议这样做,除非您的服务器与 React 应用程序完全分开并允许 CORS。鉴于服务器和客户端都存在于同一个存储库中,您似乎希望服务器也为您的 React 应用程序提供服务。

2) 代理请求

See Docs For More Info

Webpack 使您能够代理服务器请求。如果您在开发中使用不同的端口,但您的服务器和 React 应用程序将在生产中放在一起,这非常有用。在你的webpack.config.js您可以执行以下操作:

webpack.config.js:

module.exports = {
// prior rules
module: {
// module rule followed by comma
},
devServer: {
proxy: {
"/api": "http://localhost:8000"
}
}
}

在您的 Express 服务器中,为每个请求附加“api”,如下所示:/api/<path>

路由:

app.use('/api', router);

app.jsx

getData() {
axios.get('/api')
.then((response) => {
console.log("RESPONSE:", response.data);
})
.catch((error) => {
console.log(error);
})
}

future

最终,您可能需要"/"发送 React 应用程序,而不是使用纯静态方法。

在您的 Express 应用程序中,您可以执行以下操作:

  // serve index.html
const path = require('path')
app.get('*', (req, res) => {
res.sendFile(path.resolve('<PATH TO BUILT APP index.html>'))
})

*是“之前未定义的任何请求”,这意味着您应该之后定义此请求所有 API 路由。这样,除非 /api/.... ,否则您将响应应用程序。提出请求。 (在我看来)这样做的真正优点是,所有与服务器路由不匹配的请求都在 React 应用程序中处理。

关于json - MERN 与 axios 堆栈,响应对象返回 html 而不是 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49928935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com