我正在使用Typo 7.2,我正在寻找以下问题的答案:
如何以编程方式将生成的文件作为FileReference添加到扩展模型中?
首先关于我的成就/尝试的一些信息。
完成命令控制器在文件夹上运行,查找特定图像并通过GraphicFunction创建模糊文件。生成的文件作为独立的简单文件添加到存储中,并显示在sys_file表中。
$fileObject = $posterStorage->addFile(
$convertResult[3],
$posterStorage->getFolder($blurFolderName),
$newFileName);
部分完成。现在我需要将生成的文件添加为模型的文件引用。问题是,我能够做到这一点,但只能通过破解核心 - 不可接受 - 并且无法以正确的方式做到这一点。模特说:
public function addPosterWebBlur(
\TYPO3\CMS\Extbase\Domain\Model\FileReference $posterWebBlur
) {
$this->posterWebBlur->attach($posterWebBlur);
}
所以我成功扩展了FileReference类:
class FileReference extends \TYPO3\CMS\Extbase\Domain\Model\FileReference {
public function setFile(\TYPO3\CMS\Core\Resource\File $falFile) {
$this->$uidLocal = (int)$falFile->getUid();
}
}
引用没有建立,我只是在后端得到以下错误:
Table 'db_name.tx_ext_name_domain_model_filereference' doesn't exist.
更新 在将文件中的数据集成到ext_typoscript_setup.txt之后,可以保存模型,创建sys_file_reference条目并在后端中很好地运行。但是有几点可以满足所有需求:
答案 0 :(得分:1)
您必须告诉extbase持久层使用正确的表。例如,请参阅此示例https://github.com/helhum/upload_example/blob/master/ext_typoscript_setup.txt
克。反
答案 1 :(得分:0)
试着回答1) 看到 http://pct107/ReportServer_SQL2014 您应该检查posterWebBlur字段的TCA定义。 getFileFieldTCAConfig()的第二个参数 TT