美文网首页
小程序图片加载错误时替换显示默认图片

小程序图片加载错误时替换显示默认图片

作者: laogui_ | 来源:发表于2020-02-16 20:02 被阅读0次

    使用binderror方法绑定错误事件处理事件

    <image src="{{info.background}}" class='agent_bg' mode='aspectFill' binderror='errorFunction'></image>

    使用errorFunction方法对图片进行替换

    / 图片加载失败处理

      errorFunction: function (e) {

        if (e.type == "error") {

          var background = this.data.info.background        //将图片列表数据绑定到变量

          background= this.data.defaultImgBg //错误图片替换为默认图片

          this.setData({

            ['info.background']: background

         })

        }

      },

    相关文章

      网友评论

          本文标题:小程序图片加载错误时替换显示默认图片

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