我遇到了与科尔有关的问题,我无法摆脱着名的
XMLHttpRequest无法加载外部domain.com。 No' Access-Control-Allow-Origin'标头出现在请求的资源上。起源' mydomain.com'因此不允许访问
我尝试了什么:
find . -name '*.jar' -exec jdeps -dotoutput . -jdkinternals {} \;
上面的示例仅适用于在我将其上传到主域时启动静态html我收到上面提到的错误。
答案 0 :(得分:1)
答案 1 :(得分:0)
确保您的服务器上的Access-control-allow-origin设置为* 假设我们说它的nodejs
//添加标题 app.use(function(req,res,next){
// Website you wish to allow to connect
res.setHeader('Access-Control-Allow-Origin', '*');
// Request methods you wish to allow
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
// Request headers you wish to allow
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
// 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();
});