gpt4 book ai didi

javascript - Node.js 中的 CORS 问题失败

转载 作者:太空宇宙 更新时间:2023-11-04 00:42:53 25 4
gpt4 key购买 nike

app.use(function (req, res, next) {

// Website you wish to allow to connect
res.setHeader('Access-Control-Allow-Origin', 'http://localhost:8100');

// Request headers you wish to allow
res.setHeader('Access-Control-Allow-Headers', '*');

// Set to true if you need the website to include cookies in the requests sent
// to the API (e.g. in case you use sessions)
res.setHeader('Access-Control-Allow-Credentials', true);

// Pass to next layer of middleware
next();
});

我使用 postman 一切工作正常,但在测试我的 ionic 应用程序时遇到了 CORS 问题,该应用程序运行于 http://localhost:8100 。我用谷歌搜索并设法找到上述设置 header 解决方案,但现在我收到此错误:

Request header field owner is not allowed by Access-Control-Allow-Headers in preflight response.

有什么想法吗?

最佳答案

尝试使用 cors 中间件。

var cors = require('cors');

app.use(cors());

关于javascript - Node.js 中的 CORS 问题失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35953286/

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