我有以下xml:
<Root>
<Item>
<CityCode>ALV</CityCode>
<AirportCode>ALV</AirportCode>
<CityName>ANDORRA LA VELLA</CityName>
<AirportName>Andorra La Vella Hlpt</AirportName>
<StateCode></StateCode>
<CountryCode>AD</CountryCode>
<AirportTypeCode>8</AirportTypeCode>
<AirportTypeName>Heliport, not scheduled</AirportTypeName>
</Item>
</Root>
我需要一个xslt才能得到这个:
<Root>
<Item>
<CityCode>ALV</CityCode>
<CityName>ANDORRA LA VELLA</CityName>
<CityNameComplete> ANDORRA LA VELLA (ALV) - Andorra La Vella Hlpt </CityNameComplete>
<Item>
<Root>
我知道如何获得前2个节点,我不知道如何“插入”最后一个节点。
答案 0 :(得分:1)
有多种方法可以将其嵌入到完整的XSLT中,但是我们假设您将<CityNameComplete>
元素视为原始Xml文档中<AirportName>
元素的替代。
然后,关键是XSLT的<value-of>
元素:
<xsl:template match="/Root/Item/AirportName">
<CityNameComplete><xsl:value-of select="../CityName"/> (<xsl:value-of select="../AirportCode"/>) - <xsl:value-of select="."/></CityNameComplete>
</xsl:template>
这将产生一个
<CityNameComplete>ANDORRA LA VELLA (ALV) - Andorra La Vella Hlpt</CityNameComplete>
结果中的元素。
更新:如果您真的想要整个城市名称周围的空白,请在样式表中添加<xsl:text> </xsl:text>
:
<xsl:template match="/Root/Item/AirportName">
<CityNameComplete><xsl:text> </xsl:text><xsl:value-of select="../CityName"/> (<xsl:value-of select="../AirportCode"/>) - <xsl:value-of select="."/><xsl:text> </xsl:text></CityNameComplete>
</xsl:template>
结果:
<CityNameComplete> ANDORRA LA VELLA (ALV) - Andorra La Vella Hlpt </CityNameComplete>
更新2:包含IATA代码。
更新3:插入节点的另一种解决方案是将其添加到<Item>
元素的模板中:
<xsl:template match="/Root/Item">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
<CityNameComplete><xsl:text> </xsl:text><xsl:value-of select="CityName"/> (<xsl:value-of select="AirportCode"/>) - <xsl:value-of select="AirportName"/><xsl:text> </xsl:text></CityNameComplete>
</xsl:copy>
</xsl:template>
请注意,您必须删除不想完全获取输出的节点 - 因为您没有要求输出,并且因为我不想混淆答案,所以我没有包含任何代码如何这样做。
答案 1 :(得分:1)
执行此操作的一种方法是在身份模板的基础上构建,并添加一个额外的模板以匹配项元素,然后使用该元素输出 CityNameComplete 元素 concat 功能:
<xsl:template match="Item">
<Item>
<xsl:apply-templates select="@*|node()"/>
<CityNameComplete>
<xsl:value-of select="concat(CityName, ' (', AirportCode, ') ', AirportName)"/>
</CityNameComplete>
</Item>
</xsl:template>
您还需要一个模板来忽略您不想输出的所有元素。在这种情况下,除了 CityCode 和 CityName 元素之外的所有内容
<xsl:template match="Item/*[not(self::CityCode|self::CityName)]"/>
这是完整的XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="Item/*[not(self::CityCode|self::CityName)]"/>
<xsl:template match="Item">
<Item>
<xsl:apply-templates select="@*|node()"/>
<CityNameComplete>
<xsl:value-of select="concat(CityName, ' (', AirportCode, ') ', AirportName)"/>
</CityNameComplete>
</Item>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
当应用于输入XML时,输出以下内容
<Root>
<Item>
<CityCode>ALV</CityCode>
<CityName>ANDORRA LA VELLA</CityName>
<CityNameComplete>ANDORRA LA VELLA (ALV) Andorra La Vella Hlpt</CityNameComplete>
</Item>
</Root>
答案 2 :(得分:0)
这是一个可以处理丢失<AirportCode>
和/或<AirportName>
的版本:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<!--Identity template. Matches everything that isn't matched
by another template and copies it without modification.-->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Item">
<!--Copy the current element (Item) to the output.-->
<xsl:copy>
<!--Apply templates to attributes of Item and also the
CityCode and CityName elements. All other nodes of
Item will not be processed.-->
<xsl:apply-templates select="CityCode|CityName|@*"/>
<CityNameComplete>
<!--Output the value of CityName.-->
<xsl:value-of select="CityName"/>
<!--Apply the template for AirportCode. If it doesn't exist,
nothing will be output.-->
<xsl:apply-templates select="AirportCode"/>
<!--Apply the template for AirportName. If it doesn't exist,
nothing will be output.-->
<xsl:apply-templates select="AirportName"/>
</CityNameComplete>
</xsl:copy>
</xsl:template>
<xsl:template match="AirportCode">
<!--Output the value of AirportCode, surrounded by parenthesis and
preceded by a space.-->
<xsl:value-of select="concat(' (',.,')')"/>
</xsl:template>
<xsl:template match="AirportName">
<!--Output the value of AirportName, preceded by a "space dash space".-->
<xsl:value-of select="concat(' - ',.)"/>
</xsl:template>
</xsl:stylesheet>