我尝试在自定义扩展中的 tt_content 表中添加一个自定义字段。我在 ext_tables.sql 中添加了 Create table 语句,并在自定义内容元素 TCA 中注册了该字段。
但是当我激活扩展时,tt_content 中没有添加额外的字段。 有人可以引导我发现我的错误或提示在哪里查看。
据我了解文档,当扩展被激活时,ext_tables.sql 中的语句由扩展管理器自动执行。
系统是TYPO3 8.7.17。
TYPO3 绝对初学者。谢谢大家...
// ext_tables.sql
CREATE TABLE tt_content (
tx_ug_content_ext_tab_item int(11) unsigned DEFAULT '0',
);
// content element TCA file
/***************
* Register fields
*/
$GLOBALS['TCA']['tt_content']['columns'] = array_replace_recursive(
$GLOBALS['TCA']['tt_content']['columns'],
[
'tx_ug_content_ext_tab_item' => [
'label' => 'LLL:EXT:ug_content/Resources/Private/Language/Backend.xlf:ext_tab_item',
'config' => [
'type' => 'inline',
'foreign_table' => 'tx_ug_content_ext_tab_item',
'foreign_field' => 'tt_content',
'appearance' => [
'useSortable' => true,
'showSynchronizationLink' => true,
'showAllLocalizationLink' => true,
'showPossibleLocalizationRecords' => true,
'showRemovedLocalizationRecords' => false,
'expandSingle' => true,
'enabledControls' => [
'localize' => true,
]
],
'behaviour' => [
'mode' => 'select',
'localizeChildrenAtParentLocalization' => true,
]
]
]
]
);
解决办法找到了,CREATE和TABLE之间有两个空格。 Simon Gilli 发现了错误。
#1064 - You have an error in your SQL syntax;
check the manual that corresponds to your MySQL server version
for the right syntax to use near ')' at line 3
或者换句话说:删除字段定义后面的逗号以避免 SQL 错误。