Я создал XSLT, который ищет тег месяца в следующем вводе, разбивает строку и создает новые теги для каждого.Однако проблема, с которой я столкнулся, заключается в том, что он просматривает только тег первого месяца и для любых последующих тегов <set>
он автоматически заполняет их результатом первого набора.
Так что для этого ввода:
<?xml version="1.0" encoding="UTF8"?>
<Response xmlns="http://www.castiron.com/response">
<payload>
<sets>
<month>JUN,JUL</month>
<season>Season11</season>
<productId>1111111</productId>
</sets>
<sets>
<month>AUG,SEP</month>
<season>Season12</season>
<productId>2222222</productId>
</sets>
</payload>
</Response>
Это СЛЕДУЕТ производить:
<?xml version="1.0" encoding="utf-8"?>
<Response xmlns="http://www.castiron.com/response">
<payload xmlns:r="http://www.castiron.com/response">
<sets>
<month>JUN</month>
<season>Season11</season>
<productId>1111111</productId>
</sets>
<sets>
<month>JUL</month>
<season>Season11</season>
<productId>1111111</productId>
</sets>
<sets>
<month>AUG</month>
<season>Season12</season>
<productId>2222222</productId>
</sets>
<sets>
<month>SEP</month>
<season>Season12</season>
<productId>2222222</productId>
</sets>
</payload>
</Response>
Однако его АКТУАЛЬНО Ответ:
<?xml version="1.0" encoding="utf-8"?>
<Response xmlns="http://www.castiron.com/response">
<payload xmlns:r="http://www.castiron.com/response">
<sets>
<month>JUN</month>
<season>Season11</season>
<productId>1111111</productId>
</sets>
<sets>
<month>JUN</month>
<season>Season12</season>
<productId>2222222</productId>
</sets>
<sets>
<month>JUL</month>
<season>Season11</season>
<productId>1111111</productId>
</sets>
<sets>
<month>JUL</month>
<season>Season12</season>
<productId>2222222</productId>
</sets>
</payload>
</Response>
Текущий XSLTэто:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:r="http://www.castiron.com/response" exclude-result-prefixes="r">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@* | node()">
<xsl:param name="month"/>
<xsl:copy>
<xsl:apply-templates select="@* | node()">
<xsl:with-param name="month" select="$month"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
<xsl:template match="r:month">
<xsl:param name="month"/>
<month xmlns="http://www.castiron.com/response">
<xsl:choose>
<xsl:when test="$month">
<xsl:value-of select="$month"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</month>
</xsl:template>
<xsl:template name="splitMonths">
<xsl:param name="months"/>
<xsl:variable name="firstMonth" select="substring-before($months,',')"/>
<xsl:variable name="month">
<xsl:choose>
<xsl:when test="$firstMonth">
<xsl:value-of select="$firstMonth"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$months"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="otherMonths" select="substring-after($months,',')"/>
<xsl:if test="$month">
<xsl:apply-templates>
<xsl:with-param name="month" select="$month"/>
</xsl:apply-templates>
</xsl:if>
<xsl:if test="$otherMonths">
<xsl:call-template name="splitMonths">
<xsl:with-param name="months" select="$otherMonths"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template match="r:payload">
<payload xmlns="http://www.castiron.com/response">
<xsl:call-template name="splitMonths">
<xsl:with-param name="months" select="r:sets/r:month"/>
</xsl:call-template>
</payload>
</xsl:template>
</xsl:stylesheet>
Может ли кто-нибудь помочь, так как я мучаюсь с этим уже несколько дней!
ОБНОВЛЕНИЕ
Я смотрел наидея циклически проходить через каждый тег <sets>
и, следовательно, использовать этот раздел в приведенном выше коде заполнения:
<xsl:template match="r:payload">
<payload xmlns="http://www.castiron.com/response">
<xsl:for-each select="r:sets">
<xsl:call-template name="splitMonths">
<xsl:with-param name="months" select="r:sets/r:month"/>
</xsl:call-template>
</xsl:for-each>
</payload>
</xsl:template>
Однако он выдает следующий вывод:
<?xml version="1.0" encoding="utf-8"?>
<Response xmlns="http://www.castiron.com/response">
<payload xmlns:r="http://www.castiron.com/response">
<month/>
<season>SS11</season>
<productId>3600596</productId>
<month/>
<season>AW12</season>
<productId>7001258</productId>
</payload>
</Response>