我在Symfony3中有一个控制器。所有数据都返回如下:
[
{
"id": 13,
"name": "testing",
"entry_date": {
"date": "2017-12-20 15:23:59.000000",
"timezone_type": 3,
"timezone": "Europe/London"
},
"last_update": {
"date": "2017-12-20 15:23:59.000000",
"timezone_type": 3,
"timezone": "Europe/London"
}
},
{
"id": 30,
"name": "testing2",
"entry_date": {
"date": "2017-12-20 22:02:37.000000",
"timezone_type": 3,
"timezone": "Europe/London"
},
"last_update": {
"date": "2017-12-20 22:02:37.000000",
"timezone_type": 3,
"timezone": "Europe/London"
}
}
]
我想通过他们的id返回一个单独的项目。到目前为止我的方法看起来像这样:
/**
* @Method("GET")
* @Route("/item/{item_id}")
* @View()
* @ApiDoc(
* resource = true,
* description = "Get an item record",
* section = "Spark DTR",
* )
*/
public function getItem($item_id)
{
$em = $this->getDoctrine()->getManager('app');
$mi_repo = $em->getRepository('AppBundle:Item')->find($item_id);
if(empty($mi_repo)) {
return new JsonResponse("Invalid Item ID", 404);
}
return new JsonResponse($mi_repo, 200);
}
但是,此方法当前返回“无效的项ID”(如果没有项目,或
{}
如果有物品!我想返回该项目的内容。感谢你的帮助,
同
$em->getRepository('AppBundle:Item')->find($item_id);
你得到一个对象,JsonResponse()期望一个数组作为参数。
你有几个选择。您可以安装序列化程序组件(https://symfony.com/doc/3.4/components/serializer.html)并将对象直接序列化为Json并返回该组件
$jsonContent = $serializer->serialize($mi_repo, 'json');
或者如果您不想设置序列化程序,您还可以使用带有getArrayResult()的Doctrine Query Builder来返回数组而不是对象
$query = $em->createQueryBuilder()
->select('p')
->from('Products', 'p')
->where('p.id= :item_id')
->setParameter('id', $item_id)
->getQuery();
$mi_repo = $query->getArrayResult();
希望这可以帮助!