<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() {
},
onPageScroll(e) {
console.log('滚动',e)
},
onReachBottom() {
uni.showToast({
title:"触底"
})
},
methods: {
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 2000px;
background: red;
}
.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>
- 发布:2020-06-11 10:53
- 更新:2020-06-11 14:00
- 阅读:716
产品分类: uniapp/小程序/字节跳动
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 2.7.11
第三方开发者工具版本号: 1.9.4
基础库版本号: 1.67.0.1
项目创建方式: HBuilderX
示例代码:
操作步骤:
复制代码执行在字节跳动小程序打开,使用IOS设备通过今日头条官方客户端扫码即可复现(非极速版)
复制代码执行在字节跳动小程序打开,使用IOS设备通过今日头条官方客户端扫码即可复现(非极速版)
预期结果:
页面滚动以及触底事件正常触发
页面滚动以及触底事件正常触发
实际结果:
页面滚动以及触底事件均无法触发
页面滚动以及触底事件均无法触发
bug描述:
字节跳动小程序页面滚动以及触底事件无法触发
onPageScroll以及onReachBottom在今日头条极速版、皮皮虾、西瓜视频打开正常。IOS的今日头条官方客户端打开无法触发事件,请尽快修复
通过头条直接创建小程序执行事件可触发。通过UNIAPP编译后无法触发。该问题较为严重,请官方尽快修复。
已测试uniapp官方首页头条demo实例,同样无法触发。
1 个回复
秋天的秋 (作者)
怎么没人回复呢