有没有办法转换" findAll()"的结果?在Repository中转换为JSON对象,更改Javascript中特定记录的属性,然后将其返回给Action并将其转换回Action以便将其保存在DB中?
基本上这个:
$test= $this->testRepository->findAll();
$testJSON = json_encode($test);
$this->view->assign('testjson', $testJSON);
不起作用。
答案 0 :(得分:0)
$test->toArray()
集合对象(IIRC ObjectStorage)使您可以使用toArray()
方法然后对其进行编码