照着谷粒商城做什么都没错为什么错在这种一脸懵的bug上,为什么视频展开到最后一级手机就可以选择手机,为什么我的最后一级手机还可以展开啊?
心态大蹦
3条回答 默认 最新
- cbx942213 2022-04-02 02:13关注
改成这样就行了:
private List<PmsCategory> getChildren(PmsCategory root, List<PmsCategory> all) { List<PmsCategory> children = all.stream().filter(categoryEntity -> { // 找到当前id的子菜单 return categoryEntity.getParentCid().equals(root.getCatId()); }).map(categoryEntity -> { // 1 找到子菜单,递归找法 List<PmsCategory> res = getChildren(categoryEntity, all); if(res==null||res.size()==0){ categoryEntity.setChildren(null); }else{ categoryEntity.setChildren(res); } // categoryEntity.setChildren(getChildren(categoryEntity, all)); return categoryEntity; }).sorted((menu1, menu2) -> { // 2 菜单排序 return menu1.getSort() - menu2.getSort(); // menu1.getSort()==null?0;menu1.getSort() }).collect(Collectors.toList()); return children; }
那个==改成equals是idea提示包装类应采用equals比较相等,不改也不报错
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 2无用
悬赏问题
- ¥15 DevEco studio开发工具 真机联调找不到手机设备
- ¥15 请教前后端分离的问题
- ¥100 冷钱包突然失效,急寻解决方案
- ¥15 下载honeyd时报错 configure: error: you need to instal a more recent version of libdnet
- ¥15 距离软磁铁一定距离的磁感应强度大小怎么求
- ¥15 霍尔传感器hmc5883l的xyz轴输出和该点的磁感应强度大小的关系是什么
- ¥15 vscode开发micropython,import模块出现异常
- ¥20 Excel数据自动录入表单并提交
- ¥30 silcavo仿真,30分钟,只需要代码
- ¥15 FastReport 怎么实现打印后马上关闭打印预览窗口