具有良好CORS策略的Access-Control-Allow-Origin错误

时间:2018-06-10 17:09:32

标签: javascript vue.js cors

我已将 Access-Control-Allow-Origin 添加到Camo的服务器标头(咖啡脚本)上的所有(*)(代理图片):https://github.com/atmos/camo

在我的网站上,当我尝试显示图片时出现此错误:

  

访问图像   ' https://camo.example.com/3d48e9058b20b1901748c225084ab23526e79af9/68747470733a2f2f7777772e797562696765656b2e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031382f30362f626c75722d626f792d6368617261637465722d3298793637392e6a7067'   来自起源' null'被CORS政策阻止:没有   '访问控制允许来源'标题出现在请求的上   资源。起源' null'因此不允许访问。

我的脚本使用:

const image = new Image()
image.setAttribute('crossorigin', 'anonymous')
image.src = url

我需要crossOrigin,因为我使用VueJS包来裁剪/缩放/旋转图像。

0 个答案:

没有答案