🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 控制器 ## 代码 ``` <?php namespace app\agent\controller; use think\Controller; class RbacController extends Controller { /** * 添加角色提交 */ public function roleAddPost() { if ($this->request->isPost()) { $data = $this->request->param(); $result = $this->validate($data, 'role'); if ($result !== true) { // 验证失败 输出错误信息 $this->error($result); } else { $result = Db::name('role')->insert($data); if ($result) { $this->success("添加角色成功", url("rbac/index")); } else { $this->error("添加角色失败"); } } } } } ```