您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)Thinkphp中怎么實現(xiàn)一個無限級分類,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
首先看數(shù)據(jù)庫表:xp_cate
控制器:CateAction.class.php
<?php class CateAction extends Action{ function index(){ $cate=M('Cate'); $list=$cate->field("id,name,pid,path,concat(path,'-',id) as bpath")->order('bpath')->select(); foreach($list as $key=>$value){ $list[$key]['count']=count(explode('-',$value['bpath'])); } $this->assign('alist',$list); $this->display(); }//添加欄目 function add(){ $cate=new CateModel();if($vo=$cate->create()){ if($cate->add()){ $this->success('添加欄目成功'); }else{ $this->error('添加欄目失敗'); } }else{ $this->error($cate->getError()); } }} ?>
模型:CateModel.class.php
<?php class CateModel extends Model{//對應數(shù)據(jù)庫中的表xp_cate protected $_auto=array( array('path','tclm',3,'callback'), );function tclm(){ $pid=isset($_POST['pid'])?(int)$_POST['pid']:0; echo ($pid); if($pid==0){ $data=0; }else{ $list=$this->where("id=$pid")->find(); $data=$list['path'].'-'.$list['id'];//子類的path為父類的path加上父類的id } return $data; } } ?>
模板:index.html
<form action="/Article/add" method="post"> 請選擇父級欄目:<select name="pid" size="20"> <option value="0">根欄目</option> <volist name="alist" id="vo"> <option value="{$vo['id']}"> <for start="0" end="$vo['count']"> </for> {$vo['name']} </option> </volist> </select><br /> 新的欄目名稱:<input type="text" name="name" /><br /> <input type="submit" value="添加欄目" /> </form>
顯示結(jié)果如下:
關(guān)于Thinkphp中怎么實現(xiàn)一個無限級分類就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。