作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我们的例子中,我们有一个表 A,其中包含使用表 B 的 IRRE 记录。在后端模块中,我们导入一个 XML 文件来为表 B 导入这些记录。
表 A 的所有记录/数据均可用。
表 B 的所有数据都可用,新的 uids/标识符除外。
基于 https://docs.typo3.org/typo3cms/CoreApiReference/6.2/ApiOverview/Typo3CoreEngine/Database/我必须设置标识符 NEWxxxx
对于所有新创建的记录。
我一次导入大量记录。我可以在循环中生成这些标识符并一次处理所有记录,还是必须逐个记录运行整个数据映射处理记录?
除了标识符之外,我是否必须在包含 IRRE 记录的父记录上设置任何字段?
不涉及翻译/工作区/其他关系。
谢谢你的帮助。
最佳答案
TYPO3 中的 DataHandler 使用以下数组结构来创建新记录或更新现有记录 - 这在 TYPO3 CMS 8 之前有效并包括在内:
$dataMap = ['<table-name>' => [
'<record-uid>' => ['<field-name>' => '<field-value>']
];
现有记录使用记录的
uid
的整数值。领域,例如
123
,新记录使用一些随机但唯一的标识符,前缀为
NEW
,例如
NEWa2b3c4f8
创建者
uniqid('NEW', true)
- 自 TYPO3 CMS 7
StringUtility::getUniqueId('NEW')
可以而且应该用于此。
tt_content
sys_file_reference
的两个新内联文件引用用于字段 tt_content.image
sys_file
使用 uid 记录 123
sys_file
使用 uid 记录 234
// generating unique identifiers for records to be created
$ttContentId = 'NEW58d5079c8741c822627844'; // StringUtility::getUniqueId('NEW')
$fileRefId1st = 'NEW58d506f3cd0c4159344142'; // StringUtility::getUniqueId('NEW')
$fileRefId2nd = 'NEW58d50714c1226092562338'; // StringUtility::getUniqueId('NEW')
tt_content.image
,这实际上是定义(新的)内联引用,由新记录或现有记录的逗号分隔值定义 - 这可以是
NEWabc,NEWdef
,
123,234,345
或
NEWabc,123,NEWdef
,混合新的和现有的记录引用。
$dataMap = [
'tt_content' => [
'NEW58d5079c8741c822627844' => [
'title' => 'My new content element',
'bodytext' => 'Look at the following images...',
'CType' => 'textpic',
// $fileRefId1st & $fileRefId2nd, the sorting order is defined by this as well
'image' => 'NEW58d506f3cd0c4159344142,NEW58d50714c1226092562338',
],
],
'sys_file_reference' => [
'NEW58d506f3cd0c4159344142' => [
'uid_local' => 123,
'title' => 'Image #123',
],
'NEW58d50714c1226092562338' => [
'uid_local' => 234,
'title' => 'Image #234',
],
]
];
准备命令图
// the command-maps is similar to the data-map to copy, localize, move records
// however, it's not required in this scenario and thus stays empty
$commandMap = [];
执行数据处理程序
$dataHandler = new \TYPO3\CMS\Core\DataHandling\DataHandler();
$dataHandler->start($dataMap, $commandMap);
$dataHandler->process_datamap();
// $dataHandler->process_cmdmap(); // if $commandMap should be processed as well
如果您需要
uid
对于创建的记录,这可以从内部 DataHandler 记录映射中解决。例如,以下代码解析新的
uid
创建的
tt_content
记录:
// fetching the actual record ID, e.g. results in 333
$ttContentId = $dataHandler->substNEWwithIDs['NEW58d5079c8741c822627844'];
笔记
tt_content.image
定义引用。 ,其中可以包含
NEW...
ids 以及现有的整数 ids。 TYPO3 中所有引用类型的行为都是相同的:
inline
,对于所有变体(普通,foreign_field
,MM
)select
, 对于所有变体(普通,MM
)group
, 对于所有变体(普通,MM
)DataHandler
传递数据确保创建日志条目,并且在大多数情况下可以使用 TYPO3 的历史/回滚模块恢复修改。
DataHandler
。不仅限于聚合(上例中的
tt_content
记录)。但是,
NEW...
id 必须是唯一的,并且在大规模执行期间不得重复使用以避免副作用。
table_a
&
table_b
设想
table_a
和
table_b
初始问题的场景,
$dataMap
可能如下所示。当然,您必须确定对
table_b
的引用。绑定(bind)到
table_a
.
$dataMap = [
// existing records of table_a, thus using the real ids
'table_a' => [
'11' => [ 'reference_field' => 'NEWb1,NEWb2' ],
'22' => [ 'reference_field' => 'NEWb3,NEWb4' ],
'33' => [ 'reference_field' => 'NEWb5,NEWb6' ],
],
// new records to be references for table_b, thus using NEW... ids
'table_b' => [
'NEWb1' => [ ... field values of this particular table_b record ... ],
'NEWb2' => [ ... field values of this particular table_b record ... ],
'NEWb3' => [ ... field values of this particular table_b record ... ],
'NEWb4' => [ ... field values of this particular table_b record ... ],
'NEWb5' => [ ... field values of this particular table_b record ... ],
'NEWb6' => [ ... field values of this particular table_b record ... ],
],
];
标识符注释
NEWb1
有意保持简单 - 通常这些标识符由前缀
NEW
组成和一个(伪)随机十六进制字符串
abdc...
.
$id = StringUtility::getUniqueId('NEW')
创建这些唯一标识符。然而,这也可以使用
$id = 'NEW' . bin2hex(random_bytes(10);
来实现。 - 对于这个特定的过程,标识符必须是唯一的。
关于typo3 - 如何在 TYPO3 中使用 DataHandler 创建内联记录 (IRRE)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42998312/
我是一名优秀的程序员,十分优秀!