request->isAjax()) { $model = new UserModel; if ($model->login($this->postData('User'))) { return $this->renderSuccess('登录成功', url('index/index')); } return $this->renderError($model->getError() ?: '登录失败'); } $this->view->engine->layout(false); return $this->fetch('login'); } /** * 退出登录 */ public function logout() { Session::clear('yoshop_admin'); $this->redirect('passport/login'); } }