thinkphp实现无限分类(使用递归)
网络编程 2021-07-04 21:04www.168986.cn编程入门
这篇文章主要介绍了在使用递归的情况下thinkphp实现无限分类,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了thinkphp实现无限分类的详细代码,希望对大家学习无限分类有所启发。
数据库test
数据表(tp_category)
Common/conf/config.php
'DB_CONFIG2' => array( 'db_type' => 'mysql', 'db_user' => 'root', 'db_pwd' => '', 'db_host' => 'localhost', 'db_port' => '3306', 'db_name' => 'test', 'DB_PREFIX' => 'tp_', // 数据库表前缀 'DB_CHARSET'=> 'utf8', // 字符集 'DB_DEBUG' => TRUE, // 数据库调试模式 开启后可以记录SQL日志 3.2.3新增 ),
Common/function.php 遍历函数loop
/ 递归遍历 @param $data array @param $id int return array / function recursion($data, $id=0) { $list = array(); foreach($data as $v) { if($v['pid'] == $id) { $v['son'] = recursion($data, $v['id']); if(empty($v['son'])) { unset($v['son']); } array_push($list, $v); } } return $list; }
Controller/IndexController.class.php
public function test() { $category = M('category', '', C('DB_CONFIG2'))->select(); $result = loop($category); var_dump($result); $this->assign('list', $result); $this->display(); }
在模板(View/Index/test.html)中输出(仅支持2级分类,如果想全部显示,建议先把数组转换成JSON格式,然后通过AJAX请求,JS生成)
<ul> <volist name="list" id="vo"> <li> {$vo.category} <notempty name="vo['children']"> <ul> <volist name="vo['children']" id="cate"> <li>{$cate.category}</li> </volist> </ul> </notempty> </li> </volist> </ul>
后续(ajax请求,递归显示所有分类)
方法 Controller/IndexController.class.php
public function test() { $this->display(); } public function resultCategory() { $category = M('category', '', C('DB_CONFIG2'))->select(); $result = loop($category); $this->ajaxReturn(array('data'=>$result,'status'=>'1','info'=>'获取列表成功')); }
模板View/Index/test.html
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>分类测试</title> <script src="__PUBLIC__/js/jquery.min.js"></script> </head> <body> <ul id="menu"></ul> <script> $(function() { // 递归列表函数 function recursion(selector,data) { if(!data) return false; for(var i=0;i<data.length;i++) { var li=$('<li>'+data[i]['category']+'</li>'); if(data[i]['children'] && data[i]['children'].length>0) { var ul=$('<ul></ul>'); recursion(ul,data[i]['children']); li.append(ul); } selector.append(li); } } // ajax请求 用$.post() 会更方便 $.ajax({ url: "{:U('resultCategory')}", type: 'post', dataType: 'json', error: function(res) { console.log(res); }, suess: function(res) { recursion($('#menu'),res['data']); console.log(res['data']); } }); }); </script> </body> </html>
另一种无限级分类
/ 无限极分类 @param [type] $cate [description] @param integer $pid [description] @param integer $level [description] @param string $html [description] @return [type] [description] / function sortOut($cate,$pid=0,$level=0,$html='--'){ $tree = array(); foreach($cate as $v){ if($v['pid'] == $pid){ $v['level'] = $level + 1; $v['html'] = str_repeat($html, $level); $tree[] = $v; $tree = array_merge($tree, sortOut($cate,$v['id'],$level+1,$html)); } } return $tree; }
JS递归(特殊)
这个函数相当于实现php的str_repeat函数
/ 字符串重复函数 / if(!String.str_out_times) { String.prototype.str_out_times = function(l) { return new Array(l+1).join(this); } }
// 定位到当前选择 function recursion(selector, data, j, pid) { var space = ' ┠ '; if(!data) return false; $.each(data, function(i, item) { var opt = $('<option value="'+item.id+'">'+space.str_out_times(j)+item.name+'</option>');selector.append(opt); if(item.son && (item.son).length>0) { recursion(selector, item.son, ++j); j=0; } }); // 当前是哪个分类 selector.find('option').each(function() { if($(this).val() == pid) { $(this).attr('selected', 'selected'); } }); }
为什么j=0呢。因为执行顺序感觉与php不同,这里是从上到下加载。。
ajax请求数据
$('.btn-edit').click(function() { var id = $(this).data('id'); $.post("{:U('Article/editArticle')}", {id: id}, function(res) { // 分类 $('[name="pid"]').html(''); recursion($('[name="pid"]'), res.sort, 0, res.pid); $('[name="id"]').val(res.id); $('[name="title"]').val(res.title); $('[name="summary"]').val(res.summary); $('#thumbnailImg').attr('src', "__UPLOAD__"+'/thumbnail/'+res.thumbnail); ue.setContent(res.content); $('#modal-edit').modal('show'); }); });
以上就是thinkphp实现无限分类的方法,希望对大家的学习有所帮助。
上一篇:js实现图片上传并正常显示
下一篇:15个常用的jquery代码片段
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程