美文网首页
uniapp 处理scroll-view 无法滚动

uniapp 处理scroll-view 无法滚动

作者: Ths | 来源:发表于2023-09-24 15:50 被阅读0次

小程序里使用scroll-view,然后发现在iOS下不能滚动,在安卓下正常。

  1. 先确认scroll-y="true"
  2. 一定需要给scroll-view设置一个高度,具体的根据你自己的页面来 ,可以getSystemInfo获取可视区域的高度
const res = uni.getSystemInfo({
        success:(res=>{
        this.clientHeight = res.windowHeight - getApp().globalData.navHeight - 50;
    })
 });
  1. 给scroll-view加上判断,最后是这样的
<scroll-view v-if="clientHeight != 0" scroll-y="true" :style="{'height': clientHeight + 'px'}">

相关文章

网友评论

      本文标题:uniapp 处理scroll-view 无法滚动

      本文链接:https://www.haomeiwen.com/subject/gcafbdtx.html