当前位置: 首页 > article >正文

el-table手动触发懒加载

二次修改了一下,确保点击某一单元格格元素触发

// 隐藏懒加载箭头后手动触发懒加载
expandRows(scope){
    scope.row.isExpanded = !scope.row.isExpanded // 切换展开状态
    let isExpanded = scope.row.isExpanded
    const { table: { toggleRowExpansion, store }} = this.$refs;
    const { states: { lazy, treeData, rowKey }, assertRowKey, loadData } = store            
    
    const id = getRowIdentity(scope.row, rowKey)
    const data = treeData[id]

    if (isExpanded) {
        // 懒加载则调用懒加载
        if (lazy && data && 'loaded' in data && !data.loaded) {
            return loadData(scope.row, id, data)
        }
    }
    // 其余调用el-table的展开方法
    return toggleRowExpansion(scope.row, isExpanded)
    
    function getRowIdentity(row, rowKey) {
        if (!row) throw new Error('row is required when get row identity');
        if (typeof rowKey === 'string') {
            if (rowKey.indexOf('.') < 0) {
                return row[rowKey];
            }
            let key = rowKey.split('.');
            let current = row;
            for (let i = 0; i < key.length; i++) {
                current = current[key[i]];
            }
            return current;
        } else if (typeof rowKey === 'function') {
            return rowKey.call(null, row);
        }
    }
}

参考链接:el-table 树形数据 懒加载模式下一键展开_togglerowexpansion lazy-CSDN博客


http://www.kler.cn/a/430619.html

相关文章:

  • 004-spring-注解aop的使用
  • LSTM-SVM时序预测 | Matlab基于LSTM-SVM基于长短期记忆神经网络-支持向量机时间序列预测
  • 谈谈JSON
  • 精准提升:从94.5%到99.4%——目标检测调优全纪录
  • Naive UI 多选框自定义tag和label
  • Rasa框架的优点和缺点
  • 【优选算法】哈希表
  • 文件下载和图片预览 Blob FileReader
  • elementUI修改table样式
  • SQL面试题——连续问题 连续点击三次用户
  • 5G中的随机接入过程可以不用收RAR?
  • Android可长按拖拽item的列表
  • U2F和FIDO2 两种安全认证技术优劣势对比
  • 【万字详解】三维重建(二)——NeRF、NeuS、MeshUDF、NeuralUDF、3DGS、GShell
  • C语言单元总结
  • 虚幻引擎游戏开发专题-1-引擎术语
  • 关于转包关系和挂靠关系的认定
  • 【JavaEE初阶】CSS
  • 云贝教育【Oracle技术文章-Oracle 19c之PDB重命名】
  • 网络安全法 -网络信息安全
  • 深度学习的unfold操作
  • Flink WebUI解析(待更新)
  • 【iOS】UITextView
  • Ubuntu20.04调整swap分区大小笔记
  • 若依集成更好用的easyexcel
  • Freertos任务切换