在SAP PI中,我有来自REST服务(Web配置器(的XML文件,该字段可以根据产品而变化。例如,产品A具有颜色,高度和宽度,并且产品B具有颜色,高度,宽度和深度。
传入XML的示例:
<?xml version="1.0" encoding="UTF-8"?>
<Order>
<Products>
<Product>
<Color>Black</Color>
<Height>2000</Height>
<Width>1000</Width>
</Product>
</Products>
</Order>
要处理这些不同的元素,我想将字段转换为XSL 1.0转换的某种键/值对结构。
我想获得的示例:
<?xml version="1.0" encoding="UTF-8"?>
<Order>
<Products>
<Product>
<Var>
<VarName>Color</VarName>
<VarValue>Black</VarValue>
</Var>
<Var>
<VarName>Height</VarName>
<VarValue>2000</VarValue>
</Var>
<Var>
<VarName>Width</VarName>
<VarValue>1000</VarValue>
</Var>
</Product>
</Products>
</Order>
nb:本文相反地描述了:XSLT:转换名称/值对并转换XML。
这就是马丁告诉您的:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="Product/*">
<Var>
<VarName>
<xsl:value-of select="name()"/>
</VarName>
<VarValue>
<xsl:value-of select="."/>
</VarValue>
</Var>
</xsl:template>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Products">
<xsl:copy>
<xsl:for-each select="Product">
<Product>
<xsl:for-each select="./*">
<Var>
<VarName><xsl:value-of select="local-name()"/></VarName>
<VarValue><xsl:value-of select="."/></VarValue>
</Var>
</xsl:for-each>
</Product>
</xsl:for-each>
</xsl:copy>
</xsl:template>