2
我正在使用typo3 7.6。 我不能讓我的自定義JSONView extbase,它似乎不認識它。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']
]
]
],
];
}
編輯:根據這一docu
現在我不明白爲什麼我仍然得到這個輸出JSON:
[{"description":"Owns products","pensum":100,"pid":55,"test":"Product","title":"Product Owner","uid":1}]
即使在排除字段中,該位置仍然存在,並且該位置不會被輸出。看起來extbase忽略了我的重寫,但我不知道爲什麼,也沒有錯誤拋出。我把我的自定義JsonView成類/查看/ 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'));
}
}