uniapp图片显示错误显示默认图片
html相关
html
<image class="rounded-50 w-120 h-120 ml-40" :src="venueHeadPortrait" @error="venueImageError" mode=""></image>
js相关
js
const venueImageError = (e) => {
console.log(e);
venueHeadPortrait.value = 'http://192.168.1.92:5501/default_venue_icon.png'
}
当图片发生错误,显示默认图片