Home WeChat Applet Mini Program Development Analysis of the difference between WeChat applet image component binderror usage example and onerror in js

Analysis of the difference between WeChat applet image component binderror usage example and onerror in js

Jun 27, 2018 pm 03:41 PM

This article mainly introduces the related information about the usage examples of WeChat mini program image component binderror and the difference between onerror in js. Friends in need can refer to

WeChat mini program image component binderror usage examples (corresponding to html , onerror in js)

binderror HandleEvent When an error occurs, the event name published to AppService, event object event .detail = {errMsg: 'something wrong'}

In WeChat applet development, we use a list to contain images. If the image link has a 404 error, then we should give It provides a default friendly URL address. Just use the onerror event in html and js

<img src="image.gif" onerror="this.src=&#39;https:w.chesudi.com/Public/web/img/onerrorcar.png&#39;" />
Copy after login

The WeChat applet image component does not provide an onerror event, but provides a binderror event instead.

If the picture link 404, this binderror event will be triggered. We just need to modify the corresponding data source in the bound event, as follows

.wxml file

<image class="carlist_img" src="{{item.img}}" binderror="binderrorimg" data-errorimg="{{index}}"></image>
Copy after login

.js file

 binderrorimg:function(e){ 
  var errorImgIndex= e.target.dataset.errorimg //获取循环的下标
  var imgObject="carlistData["+errorImgIndex+"].img" //carlistData为数据源,对象数组
  var errorImg={}
  errorImg[imgObject]="https://w.chesudi.com/Public/web/img/onerrorcar.png" //我们构建一个对象
  this.setData(errorImg) //修改数据源对应的数据
 }
Copy after login

Common mistakes: this.setData({"carlistData[ " errorImgIndex "].img": Object})Something like this is incorrect

The above is the entire content of this article. I hope it will be helpful to everyone's learning. For more related content, please pay attention to PHP Chinese website!

Related recommendations:

How to use ECharts to load data asynchronously in WeChat mini-programs

How to implement image in WeChat mini-programs Method for displaying adaptive width proportions of component images

The above is the detailed content of Analysis of the difference between WeChat applet image component binderror usage example and onerror in js. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1658
14
PHP Tutorial
1257
29
C# Tutorial
1231
24