我正在 Typo3 v6 中开发一个扩展。在后端,我想显示一个选择字段,该字段从另一个表中获取值,但将值(文本)填充到表中而不是 ID 中。这是我的代码(catlabel 应该填写到广告表中):
'categoryname' => array(
'exclude' => 0,
'label' => 'LLL:EXT:myextension/Resources/Private/Language/locallang_db.xlf:tx_myextension_domain_model_advert.categoryname',
'config' => array(
'type' => 'select',
'allowNonIdValue' => true,
'size' => 1,
'foreign_table' => 'tx_myextension_domain_model_categoryoption',
'foreign_field' => 'catlabel'
),