有解决方法了吗
wx-open-launch-weapp 这个开放标签,ios系统首次进入按钮不显示?wx-open-launch-weapp 这个开放标签,ios系统首次进入按钮不显示,需要手动二次刷新才显示,有时需要刷新三次。安卓系统没问题,这个是什么问题????
2022-09-21我也遇到了,有解决方法吗?求求
ios scroll-view 滑动 超过里面内容形成空白怎么办?页面是用 scroll-view 安卓滑动到内容底部就已经触底不能在滑动 ,而ios 滑动到内容底部后还能滑出很长的空白页才能触底 这是什么原因 大神帮帮忙
2022-09-07<scroll-view scroll-y refresher-enabled="{{scroll_refresher_enabled}}" refresher-threshold="45" refresher-default-style="none" refresher-background="#fff" refresher-triggered="{{showLoading}}" bindrefresherrefresh="scrollRefresh" style=" height: {{scrollviewHeight}}px;" bindscroll="inscrollMOve" scroll-top="{{scrollTop}}" bindscrolltolower="scrollBottom" > // scroll-view下拉刷新 scrollRefresh() { if(!this.data.showLoading){ this.fetchProducts(this.data.currentCategory.secondId, true) this.setData({ showLoading: true }) this.stopScrollRefresh() } }, stopScrollRefresh(){ if(this.data.showLoading == true){//如果刷新状态为true置为false var _this = this; setTimeout(()=>{ _this.setData({ showLoading: false, scrollTop:0 }) },1000) } },
小程序scroll-view下拉刷新在数据结束时再返回刷新ios底部会有一段空白[图片] 这是正常表现形态 [图片] 这是iOS到数据底部再下拉刷新返回到底部
2022-09-07找到了,内层scroll-view也要设置scroll-y
scroll-view里嵌套一个横向滚动scroll-view嵌套之后,外层设置的下拉刷新在内层嵌套区域无法下拉 <scroll-view class='page-container' style=" height: {{scrollviewHeight}}rpx; overflow-y: scroll;" refresher-enabled="{{scroll_refresher_enabled}}" refresher-threshold="50" bindrefresherrefresh="onRefresh" refresher-triggered="{{triggered}}" bindtouchstart='changeNavbar' scroll-y="{{true}}" scroll-top='{{topNum}}' bindscroll="scrollMOve" bindscrolltolower="onReachBottom" >//外层区域 <scroll-view scroll-x="true" class="special-area {{ slideShow && 'no-center' }}" enable-flex="true" scroll-with-animation="{true}" scroll-left='0' bindscroll="getleft">
2022-09-02[图片]刚才在社区找到这个,就是不知道是不是完全一致
scroll-view下拉刷新没有设置到顶部,安卓端小程序却从顶部下拉?[图片]顶部写了内容,scroll-view实现下拉刷新,下拉时从顶部下拉[图片]
2022-08-29