微信小程序将view动态填满全屏

Posted 东风杨柳岸,岁月如烟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序将view动态填满全屏相关的知识,希望对你有一定的参考价值。

一、在app.js利用官方方法获取设备信息

App({
    onLaunch: function() {
        wx.getSystemInfo({
            success: res => {
                this.globalData.systemInfo = res
            }
        })
    },
    globalData: {
        systemInfo: null
    }
})
 
获取到的windowWidth、windowHeight等度量单位为 px

二、在要使用的页面的js文件里将单位统一为rpx
const app = getApp()
Page({
    data: {
        deviceHeight: 0,
        deviceWidth: 0
    },
    onLoad: function() {
        this.setData({
            deviceHeight: app.globalData.systemInfo.windowHeight / (app.globalData.systemInfo.windowWidth / 750),
            deviceWidth: app.globalData.systemInfo.windowWidth / (app.globalData.systemInfo.windowWidth / 750)
        })
    }
})

三、在要使用的页面的wxml里使用

<view class=‘contentListBox‘ style=‘height:{{deviceHeight}}rpx‘>
    <view wx:key=‘index‘ wx:for=‘{{contentList}}‘ wx:for-index="index" wx:for-item="item">
        {{item}}
    </view>
</view>

此时class为contentListBox的view的高度即为可用窗口高度。

以上是关于微信小程序将view动态填满全屏的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序中如何实现view标签中的图片居中显示,或者view居中?

微信小程序实现动态改变view标签宽度和高度的方法

微信小程序-动态获取view高度

微信小程序view按钮

微信小程序view半圆怎么弄

微信小程序怎样把隐藏的view显示