> 백엔드 개발 > PHP 튜토리얼 > symfony 使用 findall读取出来的数据 如何转成 json

symfony 使用 findall读取出来的数据 如何转成 json

WBOY
풀어 주다: 2016-06-20 12:43:04
원래의
1130명이 탐색했습니다.

$repository = $this->getDoctrine()->getRepository('AppBundle:User');$all = $repository->findAll();
로그인 후 복사


array (size=2)  0 =>     object(AppBundle\Entity\User)[248]      private 'id' => int 1      private 'name' => string 'A Foo Bar' (length=9)      private 'pass' => string '19.99' (length=5)  1 =>     object(AppBundle\Entity\User)[251]      private 'id' => int 2      private 'name' => string 'Two Fot Bar' (length=11)      private 'pass' => string '40.00' (length=5)
로그인 후 복사


返回的数据是这样的, 现在这个 如何转成 json数据
我现在用 return new JsonResponse($all); [{}]


回复讨论(解决方案)

你需要给 AppBundle\Entity\User 实现 JsonSerializable 接口

class T implements JsonSerializable {  private $id;  private $name;  private $pass;  function __construct($id, $name, $pass) {    $this->id = $id;    $this->name = $name;    $this->pass = $pass;  }  function jsonSerialize() {    return array(      'id' => $this->id,      'name' => $this->name,      'pass' => $this->pass,      );  }}$d[] = new T(1, 'a', 'p');$d[] = new T(2, 'b', 'p');echo json_encode($d);
로그인 후 복사
로그인 후 복사
[{"id":1,"name":"a","pass":"p"},{"id":2,"name":"b","pass":"p"}]
否则只能是 [{},{}]
因为返回的属性是私有的

你需要给 AppBundle\Entity\User 实现 JsonSerializable 接口

class T implements JsonSerializable {  private $id;  private $name;  private $pass;  function __construct($id, $name, $pass) {    $this->id = $id;    $this->name = $name;    $this->pass = $pass;  }  function jsonSerialize() {    return array(      'id' => $this->id,      'name' => $this->name,      'pass' => $this->pass,      );  }}$d[] = new T(1, 'a', 'p');$d[] = new T(2, 'b', 'p');echo json_encode($d);
로그인 후 복사
로그인 후 복사
[{"id":1,"name":"a","pass":"p"},{"id":2,"name":"b","pass":"p"}]
否则只能是 [{},{}]
因为返回的属性是私有的



多谢,就是因为属性是私有的。
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿