如何使用xsl区分两个相似的标签(变量)

发布于 2024-11-03 08:27:37 字数 815 浏览 1 评论 0原文

我需要创建一个能够读取两个 xml 文件的 xsl,除了第一个标签之外,它们具有相同的结构:

入站 xml:

<beans:beans> <fix-inbound> <message></message> </fix-inbound> </beans:beans>

出站 xml:

<beans:beans> <fix-outbound> <message></message> </fix-outbound> </beans:beans>

我能找到的解决方案是:

  • 创建两个文件来读取入站和出站
  • 一个可怕的如果像:

    
        读取内容的代码
    
     
        同一段代码来读取内容 
    
    
  • 在我的 中使用变量,该变量的值可以 进行 fix-inboundfix-outbound

但是,我不知道如何获取第一个标签的值。使用xsl可以吗?

有没有更优雅的方法来解决这个问题?

I need to create a xsl able to read two xml files, which have the same structure except by the first tag:

inbound xml:

<beans:beans> <fix-inbound> <message></message> </fix-inbound> </beans:beans>

outbound xml:

<beans:beans> <fix-outbound> <message></message> </fix-outbound> </beans:beans>

the solutions I could find out were:

  • creating two files to read the inbound and outbound
  • an awful if like :

    <xsl:if test="fix-inbound">
        code to read the content
    </xsl:if>
    <xsl:if test="fix-outbound"> 
        same piece of code to read the content 
    </xsl:if>
    
  • using a variable in my <xsl:for-each select="$valueOfMyFirstTag"> which the value of the variable could be fix-inbound or fix-outbound

However, I have no idea how to get the value of the first tag. Is that possible using xsl?

Is there a more elegant way to solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ヤ经典坏疍 2024-11-10 08:27:37

您可以使用

<xsl:for-each select="/*/fix-inbound | /*/fix-outbound">

(或者根据您的用例,使用 apply-templates 而不是 for-each)。

You could use

<xsl:for-each select="/*/fix-inbound | /*/fix-outbound">

(or depending on your use case, use apply-templates instead of for-each).

红颜悴 2024-11-10 08:27:37

根本不清楚您想要做什么或哪里失败了,但从您的帖子中确实可以看出您还没有发现模板规则的乐趣,模板规则构成了真正的 XSLT 处理的核心。也许您还没有发现路径中通配符 (*) 或“//”伪运算符的强大功能。

It's not at all clear what you are trying to do or where you are failing, but it does appear from your post that you haven't yet discovered the joy of template rules, which form the heart of true XSLT processing. Perhaps you also haven't yet discovered the power of wildcards (*) in paths, or the "//" pseudo-operator.

孤独陪着我 2024-11-10 08:27:37

使用

<xsl:template match="/">
 <xsl:apply-templates select="/*/*[1]"/>
</xsl:template>

<xsl:template match="fix-inbound">
 <!-- Perform whatever processing is necessary  -->
</xsl:template>

<xsl:template match="fix-outbound">
 <!-- Perform whatever processing is necessary  -->
</xsl:template>

说明

指令会导致任何结果模板与要选择执行和应用的顶部元素的第一个子元素最匹配。

如果文档是第一种类型,则应用与fix-inbound匹配的模板。

如果文档属于第二种类型,则应用与 fix-outbound 匹配的模板。

请注意:此解决方案中根本没有使用条件指令 - 在 XSLT 中很少需要条件指令,如果存在条件指令,则表明可能需要进行一些重构。

Use:

<xsl:template match="/">
 <xsl:apply-templates select="/*/*[1]"/>
</xsl:template>

<xsl:template match="fix-inbound">
 <!-- Perform whatever processing is necessary  -->
</xsl:template>

<xsl:template match="fix-outbound">
 <!-- Perform whatever processing is necessary  -->
</xsl:template>

Explanation:

The <xsl:apply-templates select="/*/*[1]"/> instruction causes whatever template best matches the first child element of the top element to be selected for execution and applied.

If the document is of the first type, the template matching fix-inbound is applied.

If the document is of the second type, the template matching fix-outbound is applied.

Do note: No conditional instructions are used at all in this solution -- in XSLT they are rarely necessary and if conditional instructions are present, this is a signal that some refactoring may be appropriate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文