我遇到有趣的事情是,在<xsl:template match="/">
外应用样式这是方案
<?xml version = "1.0" encoding = "UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui"
template="/WEB-INF/template.xhtml">
<ui:define name="content">
<p:tabView scrollable="true">
<p:tab title="My Report">
<h:panelGrid columns="2" cellpadding="5">
<xsl:apply-templates select="cd/title" />
</h:panelGrid>
</p:tab>
</p:tabView>
</ui:define>
</ui:composition>
</xsl:template>
<xsl:template match="messagetype">
<p:panel header="Message Type"> **---->Trying to apply code for
values it throws error p: is not bound**
<span style="color:blue;">
<xsl:value-of select="." />
</span>
</p:panel>
</xsl:template>
如果我定义了UI:
中的错误<xsl:template match="/">
上方的compsition,它会给我带来XLS我有很多我无法嵌套的代码,就像在
中使用<xsl:template match="/">
<xsl:template match="messagetype">
将命名空间声明(例如xmlns:p="http://primefaces.org/ui"
)移至xsl:stylesheet
元素。