AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## 进行权限过滤 >Rbac::AccessDecision() ~~~php public function _initialize(){ if(!isset($_SESSION[C('USER_AUTH_KEY')])) { $this->redirect('login/index'); } //拿出权限菜单 $menu = new MenuModel(); $menuList = $menu->getMenu(); //设置活跃菜单 $menu->menuActive($menuList,CONTROLLER_NAME .'/'. ACTION_NAME); $this->assign('menuBar',$menu->buildMenu($menuList)); if(!Rbac::AccessDecision()){ $this->error('您没有权限'); } } ~~~