关于图片上传
程序员文章站
2022-07-10 20:30:17
...
图片资源可能有缓存,那么在返回图片后,加上时间戳来防止缓存的问题:
eg:
this.photoSrc="";
// res.url存在的时候,加时间戳,要不然就在html中使用默认的图片
if(res.url){
this.photoSrc=res.url+'?v='+new Date().getTime();
}
<img src="{{photoSrc?photoSrc:'../assets/imags/abc.png'}}" alt="">