我正在使用typo3 7.6。我无法让 extbase 采用我的自定义 JsonView,它似乎无法识别它。
我像这样覆盖默认的 JsonView:
use TYPO3\CMS\Extbase\Mvc\View\JsonView as ExtbaseJsonView;
class JsonView extends ExtbaseJsonView
{
/**
* @var array
*/
protected $configuration = [
'jobs' => [
'_exclude' => ['pid'],
'_descend' => [
'place' => [
'_only' => ['name']
]
]
],
];
}
编辑:根据这个文档
现在我不明白为什么我仍然得到这个输出为 Json:
[{"description":"Owns products","pensum":100,"pid":55,"test":"Product","title":"Product Owner","uid":1}]
一个 pid 仍然存在,即使它在排除字段中并且该位置没有被输出。似乎 extbase 忽略了我的覆盖,但我不知道为什么,也没有抛出任何错误。我将自定义 JsonView 放入 Classes/View/JsonView.php
我的模型是:
工作
/**
* Job
*/
class Job extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
/**
* title
*
* @var string
* @validate NotEmpty
*/
protected $title = '';
/**
* description
*
* @var string
*/
protected $description = '';
/**
* pensum
*
* @var int
*/
protected $pensum = 0;
/**
* test
*
* @var string
*/
protected $test = '';
/**
* place
*
* @var \Vendor\SfpJobs\Domain\Model\Place
*/
protected $place = null;
// below getter and setter
}
地方
/**
* Places
*/
class Place extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
/**
* name
*
* @var string
* @validate NotEmpty
*/
protected $name = '';
/**
* numberOfEmployees
*
* @var int
* @validate NotEmpty
*/
protected $numberOfEmployees = 0;
/**
* acquired
*
* @var \DateTime
* @validate NotEmpty
*/
protected $acquired = null;
// below getter and setter
}
控制器
/**
* JobAjaxController
*/
class JobAjaxController extends ActionController
{
/**
* @var string
*/
protected $defaultViewObjectName = \TYPO3\CMS\Extbase\Mvc\View\JsonView::class;
/**
* jobRepository
*
* @var \Vendor\SfpJobs\Domain\Repository\JobRepository
* @inject
*/
protected $jobRepository = NULL;
/**
* placeRepository
*
* @var \Vendor\SfpJobs\Domain\Repository\PlaceRepository
* @inject
*/
protected $placeRepository = NULL;
/**
* action list
* This function
*
* @param \Vendor\SfpJobs\Domain\Model\Job $job
* @return void
*/
public function listAction()
{
$jobs = $this->jobRepository->findAll();
$this->view->assign('jobs', $jobs);
$this->view->setVariablesToRender(array('jobs'));
}
}