1

谁能建议我如何使用 xslt 实现以下目标?

这是xml输入:

<output>
    <header>
       <someId>ABC123</someId>
 </header>
 <results>
  <product id="A">
   <externalId>XYZ666</externalId>
   <title>some title a</title>
  </product>
  <product id="B">
   <externalId>ABC123</externalId>
   <title>some title b</title>
  </product>
  <product id="C">
   <externalId>666777</externalId>
   <title>some title c</title>
  </product>
 </results>
</output>

我需要的是一个 xslt,它将仅返回具有 \product\externalId 的“产品”,该 \product\externalId 与 \header\someId 匹配,否则它匹配所有 \product 元素。

任何建议都非常感谢。

4

4 回答 4

1

你应该使用<xsl:when test="condition">..

对于您的 XML,我提供了示例 XSLT 代码来有条件地选择节点..

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

  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="results/product">
    <xsl:choose>
      <xsl:when test="externalId = /output/header/someId">
        <!--Here goes the code-->
        <something></something>
      </xsl:when>
      <xsl:otherwise>
        <!--Other code -->
        <somethingelse></somethingelse>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>

上面的代码表现得像..

if ("externalId = /output/header/someId") then
        <!--Here goes the code-->
        <something></something>
else
        <!--Other code -->
        <somethingelse></somethingelse>

使用 Indentity 模板覆盖!

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

  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="results/product[externalId = /output/header/someId]">
    <!--Here goes the code-->
    <something></something>
  </xsl:template>
  <xsl:template match="results/product[externalId != /output/header/someId]">
    <!--Here goes the code-->
    <somethingelse></somethingelse>
  </xsl:template>
</xsl:stylesheet>
于 2012-12-03T12:56:41.610 回答
1

就这么简单——没有变量,没有xsl:chose,没有xsl:when,没有xsl:otherwise

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

 <xsl:template match="/">
     <xsl:copy-of select=
     "/*[header/someId]/results/product[externalId=/*/header/someId]
     |
      /*[not(header/someId)]/results/product
     "/>
 </xsl:template>
</xsl:stylesheet>

当此转换应用于提供的 XML 文档时:

<output>
    <header>
       <someId>ABC123</someId>
 </header>
 <results>
  <product id="A">
   <externalId>XYZ666</externalId>
   <title>some title a</title>
  </product>
  <product id="B">
   <externalId>ABC123</externalId>
   <title>some title b</title>
  </product>
  <product id="C">
   <externalId>666777</externalId>
   <title>some title c</title>
  </product>
 </results>
</output>

产生了想要的正确结果

<product id="B">
   <externalId>ABC123</externalId>
   <title>some title b</title>
</product>

当对这个 XML 文档应用相同的转换时:

<output>
 <results>
  <product id="A">
   <externalId>XYZ666</externalId>
   <title>some title a</title>
  </product>
  <product id="B">
   <externalId>ABC123</externalId>
   <title>some title b</title>
  </product>
  <product id="C">
   <externalId>666777</externalId>
   <title>some title c</title>
  </product>
 </results>
</output>

再次产生所需的正确结果:

<product id="A">
   <externalId>XYZ666</externalId>
   <title>some title a</title>
</product>
<product id="B">
   <externalId>ABC123</externalId>
   <title>some title b</title>
</product>
<product id="C">
   <externalId>666777</externalId>
   <title>some title c</title>
</product>

说明

Exp1当给定条件someCondition为时,我们使用一种通用方法(通过表达式)选择一个节点集,并在相同条件为 时true()选择另一个节点集(通过表达式) 。Exp2false()

被联合的两个表达式每个都可以在两个互斥条件下选择一个节点,因此,根据它们的条件值,只有一个表达式可以选择一个节点。

 Exp1[someCondition] |  Exp2[not(someCondition)]
于 2012-12-03T12:58:49.003 回答
0

w3schools 教程是一个很好的起点!

试着看看这个页面!

于 2012-12-03T11:35:01.417 回答
0
<xsl:key name="by-id" match="product" use="externalId"/>

<xsl:template match="/">
  <xsl:variable name="ref" select="key('by-id', //header/someId)"/>
  <xsl:choose>
    <xsl:when test="$ref">
      <xsl:copy-of select="$ref"/>
    </xsl:when>
    <xsl:otherwise>
      <xsl:copy-of select="//product"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

显示如何使用键来交叉引用节点。

于 2012-12-03T11:36:10.513 回答