vue+elementUI禁止缓存图片
时间: 2023-11-25 20:06:45 浏览: 139
vue+elementUI
在 Vue 中,可以通过在 `img` 标签中添加一个随机参数来禁止图片缓存,例如:
```html
<template>
<div>
<img :src="imageUrl + '?t=' + new Date().getTime()" alt="">
</div>
</template>
<script>
export default {
data() {
return {
imageUrl: 'https://example.com/image.jpg'
}
}
}
</script>
```
这里使用 `new Date().getTime()` 作为随机参数,每次页面加载时都会生成一个新的时间戳,防止浏览器缓存该图片。
阅读全文