将TYPO3存储库查询的结果转换为JSON对象?

时间:2018-02-13 14:12:34

标签: javascript json typo3

有没有办法转换" findAll()"的结果?在Repository中转换为JSON对象,更改Javascript中特定记录的属性,然后将其返回给Action并将其转换回Action以便将其保存在DB中?

基本上这个:

    $test= $this->testRepository->findAll();
    $testJSON = json_encode($test);
    $this->view->assign('testjson', $testJSON);

不起作用。

1 个答案:

答案 0 :(得分:0)

$test->toArray()

集合对象(IIRC ObjectStorage)使您可以使用toArray()方法然后对其进行编码