我正在使用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);
}
谢谢男孩:)