uniapp 获取scroll-view 高度的问题

        // 计算屏幕剩余高度  填补剩余高度
            let _this = this
            uni.getSystemInfo({
                success(res) {
                    _this.phoneHeight = res.windowHeight
                    console.log(res.windowHeight)
                    // 计算组件的高度
                    let view = uni.createSelectorQuery().select(".hd-height")
                    view.boundingClientRect(data => {
                        _this.navHeight = data.height
                        console.log(_this.navHeight)
                        _this.scrollviewHigh = _this.phoneHeight - _this.navHeight
                
                    }).exec()
                }
            })

最后强制绑定style  

获得的高度单位是 px  不是 

转载于:https://my.oschina.net/u/3554714/blog/3070461

你可能感兴趣的:(uniapp 获取scroll-view 高度的问题)