我有一个非常复杂的问题(IMO)所以我希望我的意思很清楚。
考虑具有以下结构的XML。
<products>
<product exportName="XPOZER_90X120">
<product-options>
<option productOptionRef="xpozerFrame">
<plan>
<period startDate="2015-10-01">
<price name="true" netBasePrice="34"/>
<price name="false" netBasePrice="0"/>
</period>
</plan>
</option>
</product-options>
</product>
</products>
此产品有两个“价格”子节点。 它需要转换为每个“price”子节点的“产品”节点,同时必须将exportName属性更改为生成的值。其余节点保持不变。
所需的输出:
<products>
<product exportName="XPOZER_WITHFRAME90X120">
<product-options>
<option productOptionRef="xpozerFrame">
<plan>
<period startDate="2015-10-01">
<price name="true" netBasePrice="34"/>
<price name="false" netBasePrice="0"/>
</period>
</plan>
</option>
</product-options>
</product>
<product exportName="XPOZER_NOFRAME90X120">
<product-options>
<option productOptionRef="xpozerFrame">
<plan>
<period startDate="2015-10-01">
<price name="true" netBasePrice="34"/>
<price name="false" netBasePrice="0"/>
</period>
</plan>
</option>
</product-options>
</product>
</products>
exportname变为'XPOZER_NOFRAME90X120'和'XPOZER_WITHFRAME90X120',它们是在同一个xslt中使用文档函数计算的,然后进行一些转换。
我的产品节点转换工作正常,但我一直在改变exportName属性。它必须成为的值已经工作但我不知道如何在复制时实际更改exportName属性。
到目前为止这是xslt
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
xmlns:input="urn:input-variables"
xmlns:my="my:my">
<my:values>
<xpozerFramefalse>NOFRAME</xpozerFramefalse>
<xpozerFrametrue>WITHFRAME</xpozerFrametrue>
<XPOZER_90X120>XPOZER_[xpozerFrame]90X120</XPOZER_90X120>
</my:values>
<xsl:template name="string-replace-all">
<xsl:param name="text" />
<xsl:param name="replace" />
<xsl:param name="by" />
<xsl:choose>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)" />
<xsl:value-of select="$by" />
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="substring-after($text,$replace)" />
<xsl:with-param name="replace" select="$replace" />
<xsl:with-param name="by" select="$by" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates select="products/product[@exportName='XPOZER_90X120']" />
</xsl:template>
<xsl:template match="product[product-options/option/plan/period/price]">
<xsl:for-each select="product-options/option/plan/period/price">
<xsl:variable name="vNewExportName">
<xsl:call-template name="priceNode" />
</xsl:variable>
<xsl:copy-of select="../../../../.." />
</xsl:for-each>
</xsl:template>
<xsl:template name="priceNode">
<xsl:variable name="vProductOptionRef" select="../../../@productOptionRef" />
<xsl:variable name="vSelector" select="concat($vProductOptionRef, @name)" />
<xsl:variable name="vExportname" select="../../../../../@exportName" />
<xsl:variable name="vNewExportName">
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="document('')//my:values/*[name()=$vExportname]" />
<xsl:with-param name="replace" select="concat(concat('[', $vProductOptionRef), ']')" />
<xsl:with-param name="by" select="document('')//my:values/*[name()=$vSelector]" />
</xsl:call-template>
</xsl:variable>
<xsl:value-of select="$vNewExportName" />
</xsl:template>
</xsl:stylesheet>
因此,for-each with copy-of负责将节点复制两次到转换的XML中,并且通过从“my:values”中检索值,可以正确找到exportname应该更改的值。 但我真的不知道如何将值应用于实际属性。
有人可以帮我这个吗?这有可能在没有回到编码的情况下实现吗?
答案 0 :(得分:1)
为回应澄清而编辑:
据我所知,你想做这样的事情:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:my="my:my"
exclude-result-prefixes="my">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<my:values>
<xpozerFramefalse>NOFRAME</xpozerFramefalse>
<xpozerFrametrue>WITHFRAME</xpozerFrametrue>
<XPOZER_90X120>XPOZER_[xpozerFrame]90X120</XPOZER_90X120>
</my:values>
<xsl:template match="/products">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="product[product-options]">
<xsl:for-each select="product-options/option/plan/period/price">
<xsl:variable name="exportName" select="ancestor::product/@exportName" />
<xsl:variable name="productOptionRef" select="ancestor::option/@productOptionRef" />
<xsl:variable name="lookup-values" select="document('')//my:values/*" />
<xsl:variable name="replace-src" select="concat($productOptionRef, @name)"/>
<xsl:variable name="newExportName">
<xsl:call-template name="replace">
<xsl:with-param name="string" select="$lookup-values[name()=$exportName]"/>
<xsl:with-param name="search-string" select="concat('[', $productOptionRef, ']')"/>
<xsl:with-param name="replace-string" select="$lookup-values[name()=$replace-src]"/>
</xsl:call-template>
</xsl:variable>
<product exportName="{$newExportName}">
<product-options>
<option productOptionRef="{$productOptionRef}">
<plan>
<period startDate="{../@startDate}">
<xsl:copy-of select="."/>
</period>
</plan>
</option>
</product-options>
</product>
</xsl:for-each>
</xsl:template>
<xsl:template name="replace">
<xsl:param name="string"/>
<xsl:param name="search-string"/>
<xsl:param name="replace-string"/>
<xsl:choose>
<xsl:when test="contains($string, $search-string)">
<xsl:value-of select="substring-before($string, $search-string)"/>
<xsl:value-of select="$replace-string"/>
<xsl:call-template name="replace">
<xsl:with-param name="string" select="substring-after($string, $search-string)"/>
<xsl:with-param name="search-string" select="$search-string"/>
<xsl:with-param name="replace-string" select="$replace-string"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$string"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
应用于您的输入示例,此处的结果将为:
<?xml version="1.0" encoding="UTF-8"?>
<products>
<product exportName="XPOZER_WITHFRAME90X120">
<product-options>
<option productOptionRef="xpozerFrame">
<plan>
<period startDate="2015-10-01">
<price name="true" netBasePrice="34"/>
</period>
</plan>
</option>
</product-options>
</product>
<product exportName="XPOZER_NOFRAME90X120">
<product-options>
<option productOptionRef="xpozerFrame">
<plan>
<period startDate="2015-10-01">
<price name="false" netBasePrice="0"/>
</period>
</plan>
</option>
</product-options>
</product>
</products>
注意:我建议您使用key查找my:values
中的值。