TYPO3 Extbase - Failing to render json via typnum
问题 TYPO3 Extbase - Failing to render json via typnum Next to list/edit/new/remove action (which work) I tried to render the output in json. But no values render. If I do a simple ... $data = array('value'=>'001'); return json_encode($data); It does return ... {"value":"001"} What am I missing? Edit: With using and referencing to the same repository its working: JSONController.php <?php namespace Vendor\Lei\Controller; use Vendor\Lei\Domain\Model\Lei; /** * JSONController */ class JSONController