uni-app 微信小程序 onReachBottom 不生效

news/2025/1/15 13:53:18/

问题描述:
uni-app 微信小程序,页面滑到底部,onReachBottom 没有生效

解决:
最外层容器设置 min-height: 101vh

代码:
pages.json 配置

{"path": "","style": { "navigationBarTitleText": "列表","onReachBottomDistance": 100 // 重点}
}

使用 onReachBottom 的页面:

import { onReachBottom } from '@dcloudio/uni-app'onReachBottom(() => {// 你的代码逻辑if (parameters.value.current >= pages.value) { return }parameters.value.current += 1toSearch.value()
})<style lang="scss" scoped>
.container {height: 100%;min-height: 101vh; // 重点overflow-y: scroll;
}
</style>

http://www.ppmy.cn/news/624487.html

相关文章

Android java代码实现:textview Arial等字体格式

// Obtain the Typeface object for Arial Typeface arialTypeface Typeface.create("Arial", Typeface.NORMAL); // Set the Typeface on the TextView TextView textView findViewById(R.id.my_text_view); textView.setTypeface(arialTypeface);

hutool工具类实现excel上传 支持03和07

一直感觉excel表的导入有很多代码&#xff0c;写一次忘一次&#xff0c;类太多&#xff0c;要知道怎么获取Workbook、Sheet、Cell、row等等&#xff0c;这么多类不可能一直记的住&#xff0c;都是写过之后保存&#xff0c;使用的时候拿出来改改&#xff0c;更烦人的是针对offic…

SolidWorks工程图导出PDF时出现“Arial Unicode MS”字体不存在时,解决方案

解决方案 1、搜索&#xff1a;“Arial Unicode MS”字体 2、下载第二个&#xff0c;解压打开文件&#xff0c;点击第一个 点击安装即可完成 最后&#xff0c;再打开SolidWorks即可&#xff0c;输出PDF。

字体Helvetica Arial,导致页面中使用中文时页面布局混乱

当使用这样的字体时的页面布局&#xff0c;页面空出来一块&#xff1a; font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro H…

已解决:Downloading https://ultralytics.com/assets/Arial.ttf to .......ubuntu18.4-YOLOv5报错[01]

yolov5模型用的是github上YOLOv5官方的&#xff1a;GitHub - ultralytics/yolov5: YOLOv5 &#x1f680; in PyTorch > ONNX > CoreML > TFLite 在某些版本下&#xff08;比如6.0&#xff09;&#xff0c;yolov5.0环境下运行detect.py或者输入指令&#xff1a; pyth…

Ubuntu下Python程序font = ImageFont.truetype(‘arial.ttf‘, 24)报错OSError: cannot open resource

可视化目标检测结果时&#xff1a;使用如下命令编辑文字字体时报错&#xff1a;OSError: cannot open resource 问题&#xff1a;Ubuntu 系统下&#xff0c;在图像上显示文字时&#xff0c;如下命令报错&#xff1a; font ImageFont.truetype(arial.ttf, 24)提示错误为&…

YOLOv5-6.0报错Downloading https://ultraytics.com/assets/Arial.ttf to...

yolov5.0环境下运行detect.py时&#xff0c;会出现Arial.ttf自动下载&#xff0c;由于无法下载问题而报错。 解决办法&#xff1a; 在文件yolov5/utils/plots.py中&#xff0c;找到以下代码&#xff1a; class Annotator:if RANK in (-1, 0):check_font() # download TTF i…