美文网首页
限制某个分类不想有上拉刷新功能的处理

限制某个分类不想有上拉刷新功能的处理

作者: 佑安丶 | 来源:发表于2023-12-06 15:14 被阅读0次

首先在pages.json里将enablePullDownRefresh改为true,这句是下拉刷新

但是有的情况下,比如:分类切换,限制某个分类不想有上拉刷新功能的处理

let isSupport = false
const pages = getCurrentPages(); const page = pages[pages.length - 1]; const currentWebview = page.$getAppWebview(); currentWebview.setStyle({ pullToRefresh: { support: isSupport, style: plus.os.name === 'Android' ? 'circle' : 'default' } });

相关文章

网友评论

      本文标题:限制某个分类不想有上拉刷新功能的处理

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