码迷,mamicode.com
首页 > 微信 > 详细

【微信小程序】解决 竖向<scroll-view>组件 “竖向滚动页面出现遮挡”问题

时间:2017-07-21 12:30:01      阅读:1241      评论:0      收藏:0      [点我收藏+]

标签:option   高度   导致   事件   view   cti   rtp   contain   ane   

问题图:

技术分享

问题原因:

  <scroll-view class="scroll-container" upper-threshold="{{sortPanelDist}}"  scroll-y="true" style="height:{{scrollHeight}}px;" bindscrolltolower="bindDownLoad" bindscroll="scroll" bindscrolltoupper="refresh">

style="height:{{scrollHeight}}px;"  属性设置不够,导致出现遮挡。

剖析:首页没有出现这样,在其他tarbar页才出现。

解决:

  onLoad: function (options) {
    var that = this;
    //获取系统的参数,scrollHeight数值,微信必须要设置style:height才能监听滚动事件
    wx.getSystemInfo({
      success: function (res) {
        that.setData({
          scrollHeight: parseInt(res.windowHeight)+200
        })
      }
    });
  },

//给获取的系统高度,再加上200px

完美解决。

【微信小程序】解决 竖向<scroll-view>组件 “竖向滚动页面出现遮挡”问题

标签:option   高度   导致   事件   view   cti   rtp   contain   ane   

原文地址:http://www.cnblogs.com/xuzhengzong/p/7216928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!