使用SF3的API Rest,返回null

时间:2017-12-04 14:41:49

标签: rest symfony

我正在使用Symfony,FOSRestBundle进行API休息。

我有一条路由返回有关用户的一些信息,我不知道为什么Postman中的返回始终为null。

onSlide

这有什么问题?

config.yml

/**
 * @Route("/api/user/{id}", name="api_user_informations")
 * @ParamConverter("user", class="UserBundle:User", options={"id" = "id"})
 * @Method("GET")
 */
public function indexAction(Request $request, User $user = null)
{
    if (!$user):
        return new JsonResponse([
            "code" => Response::HTTP_NOT_FOUND,
            "error" => "No user found with this id."
        ]);
    endif;

    return new JsonResponse($user);
}

谢谢男孩:)

0 个答案:

没有答案