摘要: //数组转化为树 function arraytotree(arr) { var top = [], sub = [], tempObj = {}; arr.forEach(function (item) { if (item.parentId 0) { // 顶级分类 top.push(item) 阅读全文
posted @ 2020-01-19 00:29 西门夜说 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 数据表结构: 后端代码: @RequestMapping(value = "/list", method = RequestMethod.POST) public Result findCategory(){ List<Category> list = categoryService.findCat 阅读全文
posted @ 2020-01-19 00:25 西门夜说 阅读(17719) 评论(3) 推荐(3) 编辑