我想从我的数据库表中获取数据"客户端"但是我得到了这个结果:
[{},{},{}]
这是我的代码:
<?php
namespace OP\OPBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use OP\OPBundle\Entity\Client;
class ClientAPIController extends Controller
{
public function indexAction()
{
$em = $this->getDoctrine()->getManager();
$personne = $em->getRepository('OPOPBundle:Client')->findAll();
// $personne_tab=array();
// $personne_tab['nom']=$personne->getNom();
// $personne_tab['prenom']=$personne->getPrenom();
// $personne_tab['id']=$personne->getId();
$personntojson= json_encode($personne);
return $this->render('OPOPBundle:ClientAPI:index.html.twig', array(
'reponse'=> $personntojson
)); }
这是index.html.twig:
{{reponse}}
答案 0 :(得分:1)
非常简单。 json_encode
只会显示/转换public
个可用数据。对象中的所有成员可能都是私有的。
你可以:
JsonSerializable
接口,从而添加jsonSerialize
方法,您自己进行转换。