gpt4 book ai didi

javascript - Express 服务器和 Axios CORS Preflight 响应不成功

转载 作者:太空宇宙 更新时间:2023-11-04 02:46:06 27 4
gpt4 key购买 nike

我使用react.js(在端口3000上运行)执行以下获取操作

var config = {
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': 'Origin, X-Requested-With, Content-Type, Accept',
// 'Accept': 'application/json',
// 'Content-Type': 'application/json',
}
};
axios.get(api_url + '/schools/countries/' + country, config)
.catch(err => {
alert('There was an error trying to fetch', country)
})
.then(response => {
.....

}

我使用代理将其发送到在端口 3001 上运行的 Express 服务器。 Express 服务器中的 App.js 文件如下:

var express = require('express');
var app = express();
var cors = require('cors')
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');

// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
//app.use(logger('dev'));

// app.use(function(req, res, next) {
// res.header("Access-Control-Allow-Origin", "*");
// res.header("Access-Control-Allow-Methods", "GET,HEAD,OPTIONS,POST,PUT");
// res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization");
// next();
// });

app.all('*', function(req, res, next) {
res.header('Access-Control-Allow-Origin', 'URLs to trust of allow');
res.header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
res.header('Access-Control-Allow-Headers', 'Content-Type');
if ('OPTIONS' == req.method) {
res.sendStatus(200);
} else {
next();
}
});


//app.use(cors())
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: false
}));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));

app.use('/', index);
app.use('/users', users);
app.use('/schools', schools);

console.log("IN APP.JS");
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});

// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};

// render the error page
res.status(err.status || 500);
res.render('error');
});

module.exports = app;

由于某种原因,我收到以下错误:

[错误] 无法加载资源:预检响应不成功(MR,第 0 行)

[错误] XMLHttpRequest 无法加载 http://localhost:3000/schools/countries/MR 。预检响应未成功

在 react 端(前端),我有这个 package.json 文件:

"proxy": "http://localhost:3001",

我尝试在 App.js 文件中使用不同的 header ,并尝试使用 cors 库来完成此操作等。如何修复此错误?

谢谢!

最佳答案

我找到了解决方案。问题是什么 1.我必须从前端删除标题。第二件事,可能也是最重要的事情是,当您使用代理进行 axios 调用时,您不应该这样做:

var api_url=“http:localhost”
axios.get(api_url + '/schools/countries/' + 国家/地区)

你应该这样做:

axios.get('/schools/countries/' + country)

没有本地主机部分。

关于javascript - Express 服务器和 Axios CORS Preflight 响应不成功,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46719354/

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