From 2653cd69e74b24a20944b197a828ee4af403faf3 Mon Sep 17 00:00:00 2001 From: augushong Date: Sun, 8 Oct 2023 14:03:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86=E6=8A=80=E6=9C=AF=E5=80=BA?= =?UTF-8?q?=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/index/controller/PostComment.php | 61 +--------------------------- 1 file changed, 2 insertions(+), 59 deletions(-) diff --git a/app/index/controller/PostComment.php b/app/index/controller/PostComment.php index fb46f6c..cd519c0 100644 --- a/app/index/controller/PostComment.php +++ b/app/index/controller/PostComment.php @@ -15,27 +15,7 @@ use think\validate\ValidateRule; class PostComment extends Common { /** - * 显示资源列表 - * - * @return \think\Response - */ - public function index() - { - // - } - - /** - * 显示创建资源表单页. - * - * @return \think\Response - */ - public function create() - { - // - } - - /** - * 保存新建的资源 + * 保存新建的资源. * * @param \think\Request $request * @return \think\Response @@ -75,48 +55,11 @@ class PostComment extends Common Cache::delete('post_' . $model_post->uid); - - - return json_message(); } /** - * 显示指定的资源 - * - * @param int $id - * @return \think\Response - */ - public function read($id) - { - // - } - - /** - * 显示编辑资源表单页. - * - * @param int $id - * @return \think\Response - */ - public function edit($id) - { - // - } - - /** - * 保存更新的资源 - * - * @param \think\Request $request - * @param int $id - * @return \think\Response - */ - public function update(Request $request, $id) - { - // - } - - /** - * 删除指定资源 + * 删除指定资源. * * @param int $id * @return \think\Response