您好,登錄后才能下訂單哦!
使用yii框架怎么實現(xiàn)一個無限極分類?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
控制器:
protected function subtree($arr,$id=0,$lev=1){ $subs = array(); // 子孫數(shù)組 foreach($arr as $v) { if($v['parent_id'] == $id) { $v['lev'] = $lev; $subs[] = $v; // 舉例說找到array('id'=>1,'name'=>'安徽','parent'=>0), $subs = array_merge($subs,$this->subtree($arr,$v['cat_id'],$lev+1)); } } return $subs; } public function actionCreate() { $model = new EcsCategory(); $query = new \yii\db\Query(); $query->select('*') ->from('ecs_category'); $command = $query->createCommand(); $res=$command->queryAll(); $tree = $this->subtree($res,0,1); foreach($tree as $k=> $v) { $tree[$k]['new_cat_name']=str_repeat('--',$v['lev']).$v['cat_name'].str_repeat('--',$v['lev']); //str_repeat — 重復(fù)一個字符串 } $arr=array( 'new_cat_name'=>'頂級分類', 'cat_id'=>0 ); array_unshift($tree,$arr); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->cat_id]); } else { return $this->render('create', [ 'model' => $model, 'data'=>$tree, ]); } }
視圖:
use \yii\helpers\ArrayHelper; <?= $form->field($model, 'parent_id')->dropDownList(ArrayHelper::map($data,'cat_id','new_cat_name') ,['prompt' => '請選擇父級分類']) ?>
關(guān)于使用yii框架怎么實現(xiàn)一個無限極分類問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(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)容。