美文网首页
vue 项目上线遇到图片失效问题解决

vue 项目上线遇到图片失效问题解决

作者: 小李不小 | 来源:发表于2021-05-26 15:00 被阅读0次
在我们项目中,假如遇到后台接口返回的图片不能显示,这样就很影响界面美观,下面是我的解决方案。
image.png
解决方案:使用onerror,当时图片失效的时候触发
<template>
     <img 
      src="images/logo.png" 
      :onerror="erroerImg"
      style="width:100px;height:100px;"
      >
</template>
<script>
  data(){
            return{
   
         erroerImg:'this.src="'+require('@/assets/checar.jpg')+'"'
            }
        },
</script>
下面就是效果
image.png

相关文章

网友评论

      本文标题:vue 项目上线遇到图片失效问题解决

      本文链接:https://www.haomeiwen.com/subject/xakhsltx.html