小程序模板网

微信小程序 scroll-view滚动到底部事件不触犯的锅

发布时间:2018-05-29 11:03 所属栏目:小程序开发教程

今日准备把微信小程序的下拉刷新做一下,没想到我绑定了bindscrolltolower事件,但是居然不触发,我设置了lower-threshold高度无济于事.最后经过不懈的努力,找了很多资料,才发现,居然要设置scroll-view高度,于是我在.wxss里设置了高度为100%:

.scrollStyle{
   width: 100%;
   height: 100%; 
   display: flex;
  flex-direction: column; 
}

居然无效,修改height为具体高度也无效.
然后我在 style里设置height为200px,居然生效了:

<scroll-view style='height:{{scrollHeight}}px' class='scrollStyle' scroll-y='true' slot="0" hidden="{{curindex != 0}}" bindscrolltolower="loadMoreData" lower-threshold="100">

注意:style里的height单位必须写px;
scrollHeight怎么来的?是获取了屏幕高度,代码如下:

 let  scrollHeight = wx.getSystemInfoSync().windowHeight;
    this.setData({
      scrollHeight: scrollHeight
    });

scrollHeight其实是减去导航栏和tabbar的高度!
ps:很啃爹只能写在style里才生效.


易优小程序(企业版)+灵活api+前后代码开源 码云仓库:starfork
本文地址:https://www.eyoucms.com/wxmini/doc/course/24465.html 复制链接 如需定制请联系易优客服咨询:800182392 点击咨询
QQ在线咨询