加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

yii框架无限极分类的实现方法

发布时间:2020-05-27 15:37:05 所属栏目:PHP 来源:互联网
导读:这篇文章主要为大家详细介绍了yii框架无限极分类的实现方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

用yii框架做了一个无限极分类,主要的数组转换都是粘贴的别人的代码,但还是不要脸的写出来,方便以后自己看

用的是

递归

,不是path路径

控制器:

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 yiidbQuery();
$query->select('*')
->from('ecs_category');
$command = $query->createCommand();
$res=$command->queryAll();
$tree = $this->subtree($res,1);
foreach($tree as $k=> $v) {
$tree[$k]['new_cat_name']=str_repeat('--',$v['lev']).$v['cat_name'].str_repeat('--',$v['lev']); //str_repeat — 重复一个字符串
}
$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,]);
}
}

视图:

<?= $form->field($model,'parent_id')->dropDownList(ArrayHelper::map($data,'cat_id','new_cat_name'),['prompt' => '请选择父级分类']) ?>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读