在项目中需要给一个view标签动态的设置高度,首先,先通过调用wx.getSystemInfo获取设备信息
onLoad: function () {
wx.getSystemInfo({
success: (res) => {
this.setData({
windowWidth: res.windowWidth * (750 / res.windowWidth),
windowHeight: (res.windowHeight * (750 / res.windowWidth))
})
},
})
},
<view style='width:{{windowWidth}}rpx;height:{{windowHeight}}rpx;' > </view>
纯干货,拿走不谢!!
网友评论