我们在question and its answers中读到,我们可以告诉JSF引擎不要转义元素的值:
<h:outputText value="#{messages.text}" style="font-weight:bold" escape="false" />
但是我应该如何阻止整个模板的转义。我的页面从http-url读取模板,其中包含半动态内容。这个半动态模板中有mime-escaped编码字符。
<ui:composition template="#{template.url}" ...
我试过
<ui:composition template="#{template.url}" escape="false"
但它不起作用。也许是因为,ui:composition没有转义属性。
如何防止整个模板出现转义效应?