service = CollectionService::getInstance(); $this->insertField = ['project_id']; } /** * 取消收藏 * @return JsonResponse */ public function unCollection(): JsonResponse { $projectId = request()->post('project_id'); if (empty($projectId)) { return jerr('参数错误'); } return jok( $this->service->unCollection($projectId), '取消成功' ); } }