uni-app 高度自适应

方法一已知固定高度
**注意 scrollH 初始值不等大于最终显示的高度,如果封装组件,onReady () **

	onLoad() {
		// 获取可视区域高度,减去固定高度
		uni.getSystemInfo({
			success: res => {
				this.scrollH = res.windowHeight - uni.upx2px(82);
			}
		});
	},

方法二 动态获取固定高度

	onLoad() {
		this.$nextTick(function() {
			uni.getSystemInfo({
				success: res => {
					const query = uni.createSelectorQuery().in(this);
					query.select('#scrollH').boundingClientRect(data => {
							// this.scrollH = `${data.height}px;`;
							console.log(data.height)
						}).exec();
				}
			});
		});
	},

方法三 使用flex,封装组件





以上微信小程序测试成功,其他未测试,如有问题请留言

你可能感兴趣的:(uni-app)