ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` <?php namespace app\agent\controller; use app\agent\model\AgentCategoryModel; use think\Controller; class AdminCategoryController extends Controller { /** * 编辑分类提交 */ public function editPost() { $data = $this->request->param(); $result = $this->validate($data, 'AgentCategory'); if ($result !== true) { $this->error($result); } $agentCategoryModel = new AgentCategoryModel(); $result = $agentCategoryModel->editCategory($data); if ($result === false) { $this->error('保存失败!'); } $this->success('保存成功!'); } } ```