我可以将元标记添加到使用模板的特定页面

时间:2013-10-10 23:01:19

标签: jsf tags facelets meta

我有一个使用模板的页面

<ui:composition template="/WEB-INF/facelets/templates/clientPage.xhtml">

我希望只使用元标记

呈现此特定页面的兼容性视图
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />

除非我将标签添加到根模板页面,否则标签不起作用。有没有办法可以将它添加到使用该模板的特定页面。

1 个答案:

答案 0 :(得分:1)

在主模板中的所需位置声明<ui:insert>

clientPage.xhtml

<!DOCTYPE html>
<html ...>
    ...
    <h:head>
        <ui:insert name="head-meta" />
        ...
    </h:head>
    ...
</html>

使用另一个主模板扩展主模板:

i18ClientPage.xhtml

<ui:composition template="/WEB-INF/facelets/templates/ie8ClientPage.xhtml"
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
>
    <ui:define name="head-meta">
        <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
    </ui:define>
</ui:composition>

最后,让这些模板客户端使用此主模板。