0

我的扩展程序有一些问题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>';

有什么建议吗?

4

1 回答 1

0

TYPO3 将 RTE 的内容稍微“修剪”(没有完整标记)保存,因此要将其“还原”回有效的 HTML,您需要使用专用方法将其包装,即:

$this->pi_RTEcssText($this->getFieldContent('description'))

注意:Adrian,Extbase 的下一点:它为此具有特殊的视图助手,因此您可以直接在模板中轻松完成;)

于 2013-10-29T12:51:05.607 回答