我在TYPO3 6.2.11中设置了当前extension_builder的扩展名。 后端的FAL文件上传无效。
extension_builder说文件上传根本没有在extbase中实现,但据我所知(cf https://github.com/helhum/upload_example),这是关于FE上传的。正确?
我只需要完全定期的BE文件上传 - 选择通过"创建新关系"或"选择&上传文件"。
直接上传失败,"上传失败!带有" *"的文件预计会延期!" (或我在TCA中指定的任何扩展名。)
引用创建有效,但保存后引用将丢失。
此屏幕截图显示了保存前的两次尝试。
保存后,再次清空:
如何使这项工作成功?我是否必须在回购中添加额外的代码以保存关系?或者可能缺少基本设置?
对于tt_content,FAL关系和上传工作正常。
并且:作为一种解决方法,是否可以使用常规" Pibase" 'type' => 'group','internal_type' => 'file'
字段?但是模型中的getter和setter怎么样?就像一个普通的字符串?
TCA:
'apprenticeship_document' => array(
'exclude' => 1,
'label' => 'LLL:EXT:stellen/Resources/Private/Language/locallang_db.xlf:tx_stellen_domain_model_institution.apprenticeship_document',
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(
'apprenticeshipDocument',
array('maxitems' => 1),
'*'
),
),
由extension_builder创建的模型:
/**
* apprenticeshipDocument
*
* @var \TYPO3\CMS\Extbase\Domain\Model\FileReference
*/
protected $apprenticeshipDocument = NULL;
/**
* Returns the apprenticeshipDocument
*
* @return \TYPO3\CMS\Extbase\Domain\Model\FileReference $apprenticeshipDocument
*/
public function getApprenticeshipDocument() {
return $this->apprenticeshipDocument;
}
/**
* Sets the apprenticeshipDocument
*
* @param \TYPO3\CMS\Extbase\Domain\Model\FileReference $apprenticeshipDocument
* @return void
*/
public function setApprenticeshipDocument(\TYPO3\CMS\Extbase\Domain\Model\FileReference $apprenticeshipDocument) {
$this->apprenticeshipDocument = $apprenticeshipDocument;
}
我还尝试使用\TYPO3\CMS\Extbase\Persistence\ObjectStorage<\TYPO3\CMS\Extbase\Domain\Model\FileReference>
代替\TYPO3\CMS\Extbase\Domain\Model\FileReference $apprenticeshipDocument
,但这也没有任何区别。
答案 0 :(得分:1)
您的TCA定义有错误,getFileFieldTCAConfig
的第一个参数应该是较低的下划线,而不是lowerCamelCase:
'apprenticeship_document' => array(
'exclude' => 1,
'label' => 'LLL:EXT:stellen/Resources/Private/Language/locallang_db.xlf:tx_stellen_domain_model_institution.apprenticeship_document',
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(
'apprenticeship_document',
array('maxitems' => 1),
'pdf,doc,docx'
),
),
除此之外,“*”不是有效的文件扩展名。您需要定义以逗号分隔的文件扩展名列表(例如'doc,docx,pdf'
)。从阅读文档,文件扩展名没有通配符。
扩展构建器中未实现FE中的文件上传,但使用Helmut Hummel提供的解决方案完全可以实现。