我试图通过匹配两个xmls中的属性来使用另一个xml中的属性更新xml中的属性值。
XML1:
<?xml version="1.0" encoding="utf-8"?>
<Products>
<Product>
<List prodId="123456" sellId="">
</List>
</Product>
</Products>
XML2:
<?xml version="1.0" encoding="utf-8"?>
<Products>
<Product>
<info prodId="123456" sellId="121">
<qnty>4</qnty>
</info>
<info prodId="23456" sellId="890">
<qnty>1</qnty>
</info>
</Product>
</Products>
我需要节点,在第二个xml中使用prodId属性,并且从该节点我需要获取属性sellId =“890”并填充第一个xml。
期望的输出:
<?xml version="1.0" encoding="utf-8"?>
<Products>
<Product>
<List prodId="123456" sellId="890">
</List>
</Product>
</Products>
这是我的xsl
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:param name="f1" select="'xml2.xml'"/>
<xsl:variable name="doc1" select="document($f1)"/>
<xsl:key name="k1" match="Products/Product/info" use="@prodId"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Products/Product/List">
<xsl:variable name="tprodId" select="@prodId"/>
<xsl:for-each select="$doc1">
<xsl:attribute name="sellId">
<xsl:value-of select="key('k1', $tprodId)/@sellId"/>
</xsl:attribute>
</xsl:for-each>
</xsl:template>
答案 0 :(得分:0)
我建议你这样做:
<xsl:template match="List" >
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:variable name="tprodId" select="@prodId"/>
<xsl:for-each select="$doc1">
<xsl:copy-of select="key('k1', $tprodId)/@sellId"/>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
或者,如果您愿意:
<xsl:template match="@sellId" >
<xsl:variable name="tprodId" select="../@prodId"/>
<xsl:for-each select="$doc1">
<xsl:copy-of select="key('k1', $tprodId)/@sellId"/>
</xsl:for-each>
</xsl:template>