service = FeedbackService::getInstance(); $this->updateField = ['id', 'reply']; } /** * 回复 * @Method POST */ public function reply(): JsonResponse { return jok( $this->service->reply((int) request()->post('id', 0), (string) request()->post('reply', '')), '已回复' ); } }