我有一个需求,我正在处理基于根元素标记的消息,为此,我基于根标记元素创建了3个不同的模板匹配。我想知道如果客户端正在发送与根标记元素不匹配的不同消息,该如何处理该消息。
输入:
<?xml version="1.0"?>
<process1 xmlns="http://www.openapplications.org/oagis/10" systemEnvironmentCode="Production" languageCode="en-US">
<Appdata>
<Sender>
</Sender>
<Receiver>
</Receiver>
<CreationDateTime/>
</Appdata>
</process1>
第二条消息:除了根标签将是process2
、process3
之外,所有内容都将相同
代码:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="/*[local-name()='proces1']">
<operation>dosomthing</operation>
</xsl:template>
<xsl:template match="/*[local-name()='process2']">
<operation>dosomthing2</operation>
</xsl:template>
<xsl:template match="/*[local-name()='process2']">
<operation>blah blah</operation>
</xsl:template>
</xsl:stylesheet>
我的问题是,如果消息与process1、process2、process3这三个模板不匹配,我想处理它。
有人能为如何实现这一目标提供建议吗?
首先,不要使用local-name()
。声明和使用正确的名称空间很容易
其次,只需制作一个不太特定的模板,就可以捕获任何具有您没有预料到的名称的文档元素(请参阅下面的第四个模板):
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:oagis="http://www.openapplications.org/oagis/10"
>
<xsl:template match="/oagis:process1">
<operation>dosomething1</operation>
</xsl:template>
<xsl:template match="/oagis:process2">
<operation>dosomething2</operation>
</xsl:template>
<xsl:template match="/oagis:process3">
<operation>dosomething3</operation>
</xsl:template>
<xsl:template match="/*" priority="0">
<!-- any document element not mentioned above -->
</xsl:template>
</xsl:stylesheet>
注意:如果前三个模板都做相同的操作,则可以将它们折叠为一个模板。
<xsl:template match="/oagis:process1|/oagis:process2|/oagis:process3">
<operation>dosomething</operation>
</xsl:template>