gpt4 book ai didi

javascript - 使用 Fetch API 但 JQuery AJAX 有效时未获取请求正文。

转载 作者:行者123 更新时间:2023-11-30 14:42:52 26 4
gpt4 key购买 nike

我正在做一个项目

  1. 我的 API 是用 Express.js (4.16) 编写的-端口:1337
  2. 前端应用程序在 React.js (16.2) 中 - 在 PORT 中:3000

所以我需要从 React.js 应用调用几个 API,我面临的问题是:

问题是——

根本不起作用- fetch() API

fetch('localhost:1337/rest/api', {
body: JSON.stringify( {name: "Sidd", "info": "Lorem ipsum dolor .."} ),
headers: {
'Accept': 'application/json, text/plain, */*',
'Content-Type': 'application/json'
},
mode: 'no-cors',
method: 'post'
})

当我使用 fetch() API 时,我没有在 Express.js 中定义的 API 中获取请求正文

console.log(req.body) // On logging the request body
{} // am getting this [empty]

WORKS- jQuery AJAX

$.ajax('localhost:1337/rest/api', {
type: 'post',
data: {name: "Sidd", "info": "Lorem ipsum dolor .."},
dataType: 'application/json',
success: function (data, status, xhr) {
console.log('status: ' + status + ', data: ' + data);
},
error: function (jqXhr, textStatus, errorMessage) {
console.log('Error' + errorMessage);
}
});

但是,我收到 No 'Access-Control-Allow-Origin' header is present on the requested resource. 错误!

但在这种情况下,至少是获取我的 API 中的请求正文。还通过 POSTMAN 测试了我的 API,它们工作得很好。我在网上看到了所有的讨论,但没有任何效果。

哦!我还想添加这个 - 在我的 Express.js 设置中正确使用 body-parser

app.use(bodyParser.json({limit: '2mb'}));                           // 2mb file upload limit
app.use(bodyParser.urlencoded({limit: '2mb', extended: true})); // 2mb file upload limit

我想要什么!

  1. fetch() API 的解决方案
  2. 如果不是 fetch() API,如何从我的 jQuery Ajax 调用中删除 No 'Access-Control-Allow-Origin' 错误。
  3. 我做错了什么?

谢谢大家!

最佳答案

因为 13373000 是不同的端口,所以你遇到了 CORS请求。

首先在fetch request中设置mode: cors,然后添加一个router handler

router.use((req, res, next) => {
res.header('access-control-allow-origin', 'http://localhost:3000')
res.header('Access-Control-Allow-Credentials', true)
res.header('Access-Control-Allow-Headers', 'Content-Type, Content-Length, Authorization, Accept, X-Requested-With')
res.header('Access-Control-Allow-Methods', 'PUT,POST,GET,DELETE,OPTIONS')
res.header('Access-Control-Max-Age', 1728000)
if (req.method === 'OPTIONS') {
return res.json({ status: 0, message: '', payload: null })
}
next()
})

在您的 rest/api 处理程序之前。

完成后,您就可以开始了。

关于javascript - 使用 Fetch API 但 JQuery AJAX 有效时未获取请求正文。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49399820/

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