assign('config',$config); return $this->fetch(); } public function set(){ $id = $this->request->get('id',1); if($this->request->isAjax()){ $post = $this->request->post(); MessageLogic::setConfig($post); $this->_success('设置成功'); } $info = MessageLogic::getMessage($id); $this->assign('info',$info); return $this->fetch(); } }