我是菜鸟sww
我是菜鸟sww
  • 发布:2022-04-20 15:27
  • 更新:2022-04-20 15:27
  • 阅读:458

【报Bug】使用reLaunch打开index页面,在index的onLoad方法中调用刷新uni.startPullDownRefresh(),onPullDownRefresh监听出现调用多次

分类:uni-app

产品分类: uniapp/H5

PC开发环境操作系统: Mac

PC开发环境操作系统版本号: 11.5.2 (20G95)

HBuilderX类型: 正式

HBuilderX版本号: 3.3.13

浏览器平台: Chrome

浏览器版本: 97.0.4692.71(正式版本) (x86_64)

项目创建方式: HBuilderX

示例代码:
<template>  
    <view class="content">  
        <image class="logo" src="/static/logo.png"></image>  
        <view class="text-area">  
            <text class="title">{{title}}</text>  
        </view>  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                title: 'Hello'  
            }  
        },  
        onLoad() {  
            uni.startPullDownRefresh()  
        },  
        onShow() {  
            // uni.startPullDownRefresh()  
        },  
        onPullDownRefresh() {  
            console.log('刷新了');  
            uni.stopPullDownRefresh()  
        },  
        methods: {  

        }  
    }  
</script>  

<style>  
    .content {  
        display: flex;  
        flex-direction: column;  
        align-items: center;  
        justify-content: center;  
    }  

    .logo {  
        height: 200rpx;  
        width: 200rpx;  
        margin-top: 200rpx;  
        margin-left: auto;  
        margin-right: auto;  
        margin-bottom: 50rpx;  
    }  

    .text-area {  
        display: flex;  
        justify-content: center;  
    }  

    .title {  
        font-size: 36rpx;  
        color: #8f8f94;  
    }  
</style>  
<template>  
    <view>  
        <view style="width: 200rpx;height: 200rpx;background-color: #007AFF;" @click="test">按钮1</view>  
        <view style="width: 200rpx;height: 200rpx;background-color: #ff7AFF;" @click="test">按钮2</view>  

    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  

            }  
        },  
        methods: {  
            test(){  
                uni.reLaunch({  
                    url:"../index/index"  
                })  
                // uni.switchTab({  
                //  url:"../index/index"  
                // })  
            }  
        }  
    }  
</script>  

<style>  

</style>  

操作步骤:

简单的两个页面一个index页面一个test页面,点击test页面一个按钮reLaunch跳转到index页面,触发index页面的,onload方法调用uni.startPullDownRefresh,在onPullDownRefresh进行监听下拉滚动打印console.log,第一个正常输出打印log正常,在切换到test页面,点击按钮自动调转到inde页面打印了log两次,在切换到test要么,在点击按钮自动调整到index页面打印了log4四次 ,再次尝试会出现打印log 8次。。。。。。。

预期结果:

测试使用switchTab跳转到index页面,onshow里边调用uni.startPullDownRefresh,是正常的,

实际结果:

使用reLaunch跳转到index页面,onLoad里边调用uni.startPullDownRefresh,是异常的,onPullDownRefresh事件会成倍数增加

bug描述:

简单的两个页面一个index页面一个test页面,点击test页面一个按钮reLaunch跳转到index页面,触发index页面的onload方法调用uni.startPullDownRefresh,在onPullDownRefresh进行监听下拉滚动打印console.log,第一个正常输出打印log正常,在切换到test页面,点击按钮自动调转到inde页面打印了log两次,在切换到test要么,在点击按钮自动调整到index页面打印了log4四次 ,再次尝试会出现打印log 8次。。。。。。。

2022-04-20 15:27 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复