在<ui:composition template =“”>的整个模板中禁用HTML转义

时间:2015-05-08 19:03:09

标签: jsf templates jsf-2 escaping facelets

我们在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没有转义属性。

如何防止整个模板出现转义效应?

0 个答案:

没有答案