小程序组件  scroll-view  下拉加载更多,触底触发事件,容器高度设置

 

 

var that = this;

    /**
     * 获取当前设备的宽高
     */
    wx.getSystemInfo({ 
      success: function (res) { 
          that.setData({ 
              clientHeight: res.windowHeight -30
          }); 
      } 
});

小程序组件  scroll-view  下拉加载更多,触底触发事件,容器高度设置

 

 

style="height: {{clientHeight?clientHeight+'px':'auto'}}"

 

相关文章:

  • 2021-09-10
  • 2022-02-08
  • 2022-02-11
  • 2022-12-23
  • 2021-10-07
  • 2021-12-02
  • 2021-07-21
  • 2022-12-23
猜你喜欢
  • 2022-01-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-09
  • 2022-12-23
相关资源
相似解决方案