我的扩展程序有一些问题rte
。在表格中我设置了 field text area with rte
。在 BE TYPO3 生成 rte 视图中,当我格式化文本时,一切正常。唯一的问题是当我有一些段落时——在 BE 中我有<p>
标签,但在 HTML 代码的前端中,<p>
标签并不“存在”。
我的 TCA 代码如下所示:
'description' => array(
'exclude' => 1,
'label' => 'LLL:EXT:fu_product_table/locallang_db.xml:tx_table_products.description',
'defaultExtras' => 'richtext[*]',
'config' => array(
'type' => 'text',
'cols' => '30',
'rows' => '5',
'wizards' => array(
'_PADDING' => 2,
'RTE' => array(
'notNewRecords' => 1,
'RTEonly' => 1,
'type' => 'script',
'title' => 'Full screen Rich Text Editing|Formatteret redigering i hele vinduet',
'icon' => 'wizard_rte2.gif',
'script' => 'wizard_rte.php',
),
),
)
),
然后尝试在类中呈现该字段:
'<td class="td-1">' . $this->getFieldContent('description') . '</td>';
有什么建议吗?