taro开发微信小程序 -- 下拉刷新和上拉加载

    技术2022-07-10  149

    参考文档:https://taro-docs.jd.com/taro/docs/tutorial#项目目录结构

     

    其实和微信小程序一样,只要设置页面配置信息并添加对应函数即可

    class Index extends Component { // 添加小程序页面配置信息 config: { enablePullDownRefresh: true, onReachBottomDistance: 50 } onPullDownRefresh() { console.log('下拉刷新') setTimeout(() => { // 停止下拉刷新 Taro.stopPullDownRefresh() }, 1000) } onReachBottom() { console.log('触底事件,做上拉加载') } }

     

    Processed: 0.008, SQL: 9