美文网首页
vue中img图片404,默认图片代替

vue中img图片404,默认图片代替

作者: 踩着阳光 | 来源:发表于2019-11-07 14:44 被阅读0次

    img标签,当src的url404时

    1、使用默认图片代替

    <img style="margin-left: 40px;width: 130px;height: 130px;" :src="url" @error="nofindImg()"/>

        nofindImg(){

          let img = event.srcElement;

          img.src = "../../../static/404.png";

          img.onerror = null; //防止一直跳动

        },

    2、not found,直接删除标签

    <img style="margin-left: 40px;width: 130px;height: 130px;" :src="url"  :οnerrοr="default"/>

    data中定义默认图地址

      data() {

        return {

           default: 'this.remove()'

        };

    相关文章

      网友评论

          本文标题:vue中img图片404,默认图片代替

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