当前位置: 首页 > 工具软件 > TYPO3 Neos > 使用案例 >

Neos Flow ActionController 返回JSON

云和硕
2023-12-01
  1. 在ActionController里添加protected $supportedMediaTypes = ['application/json', 'text/html' ];
  2. return json_encode($dashboard); 或者使用JSON View

             /**
             * @var string
             */
            protected $viewFormatToObjectNameMap = array(
                    'html' => 'TYPO3\Fluid\View\TemplateView',
                    'json' => 'TYPO3\Flow\Mvc\View\JsonView'
            );
    ...
     $this->view->assign('value', $dashboard);
 类似资料: