Flux Form 中的富文本编辑器
Posted
技术标签:
【中文标题】Flux Form 中的富文本编辑器【英文标题】:Rich Text Editor inside Flux Form 【发布时间】:2015-11-03 14:56:55 【问题描述】:我正在使用通量,我想使用通量以后端形式显示 rte(富文本编辑器)。
<f:section name="Configuration">
//...Here i want to display rte element
</f:section>
【问题讨论】:
【参考方案1】:使用 Flux Form 你可以使用下面的代码
<f:section name="Configuration">
<flux:field.text name="Text" label="Whatever" enableRichText="1" />
</f:section>
在表格中你可以使用下面的
<f:section name="Main">
<f:format.html>Text</f:format.html>
<f:section name="Main">
请从Tools >> User Setting >> Edit & Advanced functions.
启用富文本编辑器
如需更多帮助,您可以see here
【讨论】:
更简单的解决方案:<flux:field.text name="Text" label="Whatever" enableRichText="1" />
- 不需要defaultExtras
。以上是关于Flux Form 中的富文本编辑器的主要内容,如果未能解决你的问题,请参考以下文章