ai自由畅想
ai自由畅想
  • 发布:2020-07-23 17:14
  • 更新:2020-07-23 17:14
  • 阅读:633

【报Bug】安卓抖音V12.0.0版本触底事件onReachBottom勾子不执行

分类:uni-app

产品分类: uniapp/小程序/字节跳动

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: win10

HBuilderX类型: 正式

HBuilderX版本号: 2.7.14

第三方开发者工具版本号: 1.9.5

基础库版本号: 1.72.0.19

项目创建方式: HBuilderX

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

    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                title: 'Hello'  
            }  
        },  
        onLoad() {  

        },  
        onPageScroll(e){  
            console.log('页面滚动事件',e)  
        },  
        onReachBottom(){  
            //到底部了  
            console.log('到底部了',1);  
            uni.showToast({  
                title: '到底部了',  
                duration: 2000,  
            });  
        },  
        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>  

操作步骤:

直接新建项目, 写onReachBottom触底事件 ,在抖音新版里不执行

预期结果:

能执行onReachBottom触底事件

实际结果:

不执行触底事件

bug描述:

onReachBottom()事件在开发者工具能执行 , 当我把抖音安卓升级到 version12.0.0版本后 ,触底事件不执行了!!包括onPageScroll页面滚动事件

预览 ,用安卓抖音v12.0.0版本扫, 触底事件不执行

export default {  
        data() {  
            return {  
                title: 'Hello'  
            }  
        },  
        onLoad() {  

        },  
        onPageScroll(e){  
            console.log('页面滚动事件',e)  
        },  
        onReachBottom(){  
            //到底部了  
            console.log('到底部了',1);  
            uni.showToast({  
                title: '到底部了',  
                duration: 2000,  
            });  
        },  
        methods: {  

        }  
    }
2020-07-23 17:14 负责人:无 分享
已邀请:

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