赞
踩
bind:load
,回调函数名为onImgLoad
methods: {
onImgLoad(event){
// 图片的高宽数据在event.detail中
const {width, height} = event.detail
this.setData({
w:340,
h:340/width*height
})
}
}
<image bind:load="onImgLoad" style="width:{{w}}rpx;height:{{h}}rpx" src="{{data.img}}"/>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。