我有一點問題,因爲我必須在Symfony3中顯示帶有數據庫的json日期。如何在symfony中顯示帶有數據庫的json數據
我控制器
/**
* @Route("/api/rest", name="rest_api")
*
*
* @Template
*/
public function indexAction(Request $Request) {
$Repo = $this->getDoctrine()->getRepository('CommonUserBundle:Comment');
$row = $Repo->findAll();
$data = json_encode($row, true);
return array(
'comment' => $data
);
}
這是我在html.twig
{% for comments in comment %}
{{ comments }}
{% endfor %}
佈局,但我不知道爲什麼什麼都不顯示。 請幫助我:)
你爲什麼要把它編碼爲json? – goto
那麼你想要返回json,還是渲染一個樹枝模板? –
這是我對工作的要求。 –