遇到的vue-canvas-poster跨域的处理
作者:互联网
原因
后端返回的图片在img里加载后会有缓存,如果接着在vue-canvas-poster渲染就会报跨域。(如果浏览器吧缓存关了就不会报跨域,但是不会每个用户都关缓存)
解决方法
在图片链接添加标识用来区分,如http://localhost:3000/images/color.png?time=1656409797025
代码实现
// 获取图片的长宽比
getImgSize(url) {
return new Promise(resolve => {
let img = document.createElement('img');
img.src = url;
// img.setAttribute("crossOrigin",'Anonymous');
img.onload = () => {
resolve(img.naturalWidth / img.naturalHeight);
};
});
},
//请求数据
this.$ajax.post('http://localhost:3000/uploadImg', formData).then(res => {
this.$refs.actionSheetSlot.close();
this.getImgSize(res.imgUrl).then(result => {
this.logoSize = result;
// 注意:在图片地址添加一些标识(如时间戳)就行了,保证图片链接不同,让其不会被缓存
this.cardInfo.FCompanyLogo = res.imgUrl + '?time=' + new Date().getTime();
this.FCompanyLogo = res.data.key;
});
})
标签:canvas,缓存,跨域,img,res,vue,3000,图片链接 来源: https://www.cnblogs.com/htt-blog/p/16420511.html