如何从 XML 有效负载中读取特定字段,该有效负载再次出现在主 XML 有效负载的字段中

问题描述 投票:0回答:2
xslt xslt-1.0 xslt-2.0 xslt-3.0 xslt-grouping
2个回答
0
投票

这是一种方法。

<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

  <!-- Identity template. -->
  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="Trailer">
    <!-- Do not output the Trailer node or comments. Only output its child nodes. -->
    <xsl:apply-templates select="*"/>
  </xsl:template>

  <!-- Suppress Field4 -->
  <xsl:template match="Field4"/>

</xsl:stylesheet>

0
投票

问题不完全清楚。可以使用以下方法产生预期结果:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="Trailer">
    <xsl:apply-templates select="Field5|Field6|Field7"/>
</xsl:template>

</xsl:stylesheet>
© www.soinside.com 2019 - 2024. All rights reserved.