Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
5557d664
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
5557d664
编写于
3月 26, 2024
作者:
W
wanganxp
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
完善虚拟列表的措辞
上级
37928b42
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
7 addition
and
5 deletion
+7
-5
pages.json
pages.json
+1
-1
pages/API/get-file-system-manager/get-file-system-manager.uvue
.../API/get-file-system-manager/get-file-system-manager.uvue
+2
-1
pages/tabBar/template.uvue
pages/tabBar/template.uvue
+1
-1
pages/template/custom-long-list/custom-long-list.uvue
pages/template/custom-long-list/custom-long-list.uvue
+3
-2
未找到文件。
pages.json
浏览文件 @
5557d664
...
...
@@ -1274,7 +1274,7 @@
{
"path"
:
"pages/template/custom-long-list/custom-long-list"
,
"style"
:
{
"navigationBarTitleText"
:
"自
行实现长列表组件
"
,
"navigationBarTitleText"
:
"自
定义虚拟长列表
"
,
"enablePullDownRefresh"
:
false
}
}
...
...
pages/API/get-file-system-manager/get-file-system-manager.uvue
浏览文件 @
5557d664
...
...
@@ -78,7 +78,8 @@
const fileManager = uni.getFileSystemManager()
fileManager.stat({
path: `${this.basePath}${this.statFile}`,
// path: `${this.basePath}${this.statFile}`, //USER_DATA_PATH
path: `${this.globalTempPath}${this.statFile}`, //CACHE_PATH
recursive: this.recursiveVal,
success: (res : StatSuccessResult) => {
if (this.logAble) {
...
...
pages/tabBar/template.uvue
浏览文件 @
5557d664
...
...
@@ -113,7 +113,7 @@
{
id: 'custom-long-list',
url: 'custom-long-list',
name: '自
行实现长列表组件
',
name: '自
定义虚拟长列表
',
open: false,
pages: [] as Page[],
},
...
...
pages/template/custom-long-list/custom-long-list.uvue
浏览文件 @
5557d664
<template>
<view style="flex: 1;background-color: aliceblue;">
<page-head :title="title"></page-head>
<view class="tips">使用部分渲染优化列表初始元素较多时加载卡顿的问题,此示例中仅渲染滚动容器上下5屏的内容。适用于仅使用一个for循环创建所有列表项的场景。</view>
<view class="tips">list-view组件虽然在UI层有recycle机制,但长列表的vnode太多也会造成初始化卡顿。本组件仅创建部分vnode,而未使用list-view,也就是UI层其实是短列表。
此示例中仅渲染滚动容器上下5屏的内容。适用于仅使用一个for循环创建所有列表项的场景。</view>
<custom-list-view style="flex: 1;" :list="list" @scrolltoupper="scrolltoupper" @scroll="scroll">
<template v-slot:default="{items}">
<custom-list-item class="item" v-for="item in (items as Item[])" :item="item" :key="item.id">
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录