Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-content/themes/mkBlog/single-post-%e3%80%90element-ui%e3%80%91el-cascader-%e7%ba%a7%e8%81%94%e9%80%89%e6%8b%a9%e5%99%a8-%e6%9c%80%e5%90%8e%e4%b8%80%e7%ba%a7%e6%95%b0%e6%8d%ae%e4%b8%ba%e7%a9%ba%e6%98%be%e7%a4%ba%e6%9a%82%e6%97%a0.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 703

Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-content/themes/mkBlog/single-post-%e3%80%90element-ui%e3%80%91el-cascader-%e7%ba%a7%e8%81%94%e9%80%89%e6%8b%a9%e5%99%a8-%e6%9c%80%e5%90%8e%e4%b8%80%e7%ba%a7%e6%95%b0%e6%8d%ae%e4%b8%ba%e7%a9%ba%e6%98%be%e7%a4%ba%e6%9a%82%e6%97%a0.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 706

Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-includes/theme-compat/single-post-%e3%80%90element-ui%e3%80%91el-cascader-%e7%ba%a7%e8%81%94%e9%80%89%e6%8b%a9%e5%99%a8-%e6%9c%80%e5%90%8e%e4%b8%80%e7%ba%a7%e6%95%b0%e6%8d%ae%e4%b8%ba%e7%a9%ba%e6%98%be%e7%a4%ba%e6%9a%82%e6%97%a0.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 709
【Element UI】el-cascader 级联选择器 最后一级数据为空显示暂无数据问题 | 越努力越快乐

【Element UI】el-cascader 级联选择器 最后一级数据为空显示暂无数据问题

gengboxb 710 0

原因:

后端返回的最底层 的子项中 的 children 为空数组

解决:

使用递归的方式,将最底层中的 children设为null

// 递归判断列表,把最后的children设为null
getTreeData (data) {
    for (var i = 0; i < data.length; i++) {
    if (data[i].children.length < 1) {
        // children若为空数组,则将children设为null
        data[i].children = null
    } else {
        // children若不为空数组,则继续 递归调用 本方法
        this.getTreeData(data[i].children)
    }
    }
    return data
}

发表评论 取消回复
表情 图片 链接 代码

分享