Web Front-end
JS Tutorial
thinkphp implements unlimited classification (using recursion)_javascript skills
thinkphp implements unlimited classification (using recursion)_javascript skills
The example in this article shares with you the detailed code of thinkphp to implement infinite classification. I hope it will inspire everyone to learn infinite classification.
Database: test
Data table: (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 traverse function 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();
}
Output in the template (View/Index/test.html) (only supports level 2 classification. If you want to display all, it is recommended to convert the array into JSON format first, and then request through AJAX and generate 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>
Follow-up (ajax request, recursively display all categories):

Method 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'=>'获取列表成功'));
}
Template 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);
},
success: function(res) {
recursion($('#menu'),res['data']);
console.log(res['data']);
}
});
});
</script>
</body>
</html>
Another infinite classification:

/**
* 无限极分类
* @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 recursion (special):

This function is equivalent to implementing PHP’s str_repeat function
/* 字符串重复函数 */
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');
}
});
}
Why j=0. Because the execution order feels different from php, it is loaded from top to bottom. .
ajax request data:
$('.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');
});
});
The above is how thinkphp implements unlimited classification. I hope it will be helpful to everyone's learning.
Hot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
1384
52
How do I create and publish my own JavaScript libraries?
Mar 18, 2025 pm 03:12 PM
Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.
How do I optimize JavaScript code for performance in the browser?
Mar 18, 2025 pm 03:14 PM
The article discusses strategies for optimizing JavaScript performance in browsers, focusing on reducing execution time and minimizing impact on page load speed.
What should I do if I encounter garbled code printing for front-end thermal paper receipts?
Apr 04, 2025 pm 02:42 PM
Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...
Who gets paid more Python or JavaScript?
Apr 04, 2025 am 12:09 AM
There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.
How do I debug JavaScript code effectively using browser developer tools?
Mar 18, 2025 pm 03:16 PM
The article discusses effective JavaScript debugging using browser developer tools, focusing on setting breakpoints, using the console, and analyzing performance.
How to merge array elements with the same ID into one object using JavaScript?
Apr 04, 2025 pm 05:09 PM
How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...
How do I use source maps to debug minified JavaScript code?
Mar 18, 2025 pm 03:17 PM
The article explains how to use source maps to debug minified JavaScript by mapping it back to the original code. It discusses enabling source maps, setting breakpoints, and using tools like Chrome DevTools and Webpack.
Demystifying JavaScript: What It Does and Why It Matters
Apr 09, 2025 am 12:07 AM
JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.


