所以我有一个关于fetch
和Access-Control-Allow-Origin
的问题。
我尝试获取这样的网站:
fetch('https://localhost/.../api/json')
.then(blob => blob.json())
.then(data => console.log("data:", data))
.catch(err => console.log("err: ", err));
因此,在Chrome网络标签中,我看到显然没有问题。但是,在JavaScript代码中,我得到了CORS
问题。这怎么可能呢?看到:
我尝试添加mode: 'cors'
它没有帮助。我尝试添加mode: 'no-cors'
是的,它通过但我无法阅读答案在这种情况下,我得到Unexpected end of input
和'blob'
变量是空的无论如何。
如果我使用Postman
或Curl
执行相同的GET请求而没有任何选项或标题,它就像魅力一样,我得到了我的回复。
你有什么主意吗?提前致谢
编辑:因为它正在处理Postmann
和Curl
,并且因为我可以在Chrome调试器中看到响应,所以我认为它不是另一个问题的副本,其中请求明确地转到不允许的外部URL从其他地方访问。对?
编辑2:它可能必须这样做地址:https://localhost
是自签名的,因此没有有效的证书?在curl
我不得不添加--insecure
标志。
正如T.J.所指出的那样。克劳德,这在浏览器中是不可能的。查看相关资源:
但是,不要绝望!有一个解决方法:
我们将使用调用cURL
的节点服务器来绕过限制:
你需要npm的nodejs。
npm init
和npm i -S express
api.js
文件。使用以下代码: const https = require("https");
const express = require('express');
const app = express();
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
app.get('/', function (req, res) {
const exec = require('child_process').exec;
exec('curl ' + req.query.url + ' --insecure', function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
res.json(stdout);
if (error !== null) {
console.log('exec error: ' + error);
}
});
});
app.listen(3000, function () { console.log('listening on port 3000!'); });
node api.js
运行服务器localhost:3000
发出请求,在查询参数中添加您想要生成get
请求的URL。例: fetch('http://localhost:3000/?url=https://HOST/.../api/json')
.then(blob => blob.json())
.then(data => console.log("data:", data))
.catch(err => console.log("err: ", err));