我使用p:editor作为输入:
<p:editor id="editor" value="#{blogUIBean.blogEdit.blogIn}" required="true" style="width:500px"/>
我将此输入显示为:
<h:outputText value="#{blogUIBean.selectedBlog.blogIn}" style="line-height:150%;margin-left:30px;background-color:#e1ecf0;" />
但是显示选择的编辑器选项如; span style =“font-family:Verdana,Arial,Helvetica,sans-serif; font-size:13px; line-height:18px; background-color:rgb(255,255,255);”&gt; Projeninfikirbabasıolan EkmekSanayiİşverenlerSendikası,sunduklarıprojeninbüyükbirilgiilekarşılandığınıve
为什么会发生这种情况?如何禁用这些?
答案 0 :(得分:0)
使用属性escape
,如:
<h:outputText value="#{blogUIBean.selectedBlog.blogIn}" escape="false" style="line-height:150%;margin-left:30px; background-color:#e1ecf0;" />
逃逸
表示敏感字符的标志 必须转义HTML和XML标记。这个标志是 默认设置为“true”。