У меня есть XML, который выглядит следующим образом:
<request>
<MaterialOrderItems>
<Item>
<LineId>1</LineId>
<ParentLineId>1</ParentLineId>
</Item>
<Item>
<LineId>2</LineId>
<ParentLineId>1</ParentLineId>
</Item>
<Item>
<LineId>3</LineId>
<ParentLineId>1</ParentLineId>
</Item>
</MaterialOrderItems>
</request>
Я хочу взять это XML и продублировать эту группу предметов (Предмет [1,2,3]) на несколько копий. , Например, если я хочу 2 копии, мой окончательный xml будет выглядеть так:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<request>
<MaterialOrderItems>
<Item>
<LineId>1</LineId>
<ParentLineId>1</ParentLineId>
</Item>
<Item>
<LineId>2</LineId>
<ParentLineId>1</ParentLineId>
</Item>
<Item>
<LineId>3</LineId>
<ParentLineId>1</ParentLineId>
</Item>
<Item>
<LineId>4</LineId>
<ParentLineId>4</ParentLineId>
</Item>
<Item>
<LineId>5</LineId>
<ParentLineId>4</ParentLineId>
</Item>
<Item>
<LineId>6</LineId>
<ParentLineId>4</ParentLineId>
</Item>
</MaterialOrderItems>
</request>
Я придумала этот xslt, чтобы сделать это:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:output encoding="UTF-8" indent="yes" method="xml" standalone="no"
omit-xml-declaration="no"/>
<xsl:param name="nmaterials" select="2" />
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="//MaterialOrderItems" name="order">
<xsl:param name="material_number" select="1" />
<xsl:copy>
<Item>
<LineId><xsl:value-of select="((($material_number - 1) * 3) + 1)"/></LineId>
<ParentLineId><xsl:value-of select="((($material_number - 1) * 3) + 1)"/></ParentLineId>
</Item>
<Item>
<LineId><xsl:value-of select="((($material_number - 1) * 3) + 2)"/></LineId>
<ParentLineId><xsl:value-of select="((($material_number - 1) * 3) + 1)"/></ParentLineId>
</Item>
<Item>
<LineId><xsl:value-of select="((($material_number - 1) * 3) + 3)"/></LineId>
<ParentLineId><xsl:value-of select="((($material_number - 1) * 3) + 1)"/></ParentLineId>
</Item>
</xsl:copy>
<xsl:if test="$material_number < $nmaterials">
<xsl:apply-templates select=".">
<xsl:with-param name="material_number" select="$material_number + 1" />
</xsl:apply-templates>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
, и я получить этот вывод:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<request>
<MaterialOrderItems>
<Item>
<LineId>1</LineId>
<ParentLineId>1</ParentLineId>
</Item>
<Item>
<LineId>2</LineId>
<ParentLineId>1</ParentLineId>
</Item>
<Item>
<LineId>3</LineId>
<ParentLineId>1</ParentLineId>
</Item>
</MaterialOrderItems>
<MaterialOrderItems>
<Item>
<LineId>4</LineId>
<ParentLineId>4</ParentLineId>
</Item>
<Item>
<LineId>5</LineId>
<ParentLineId>4</ParentLineId>
</Item>
<Item>
<LineId>6</LineId>
<ParentLineId>4</ParentLineId>
</Item>
</MaterialOrderItems>
</request>
У меня есть два вопроса:
- Как избавиться от узла MaterialOrderItems, повторяющегося здесь? Я хочу, чтобы он только один раз охватывал все предметы.
- Как сделать это лучше, обрабатывая оригинал xml? В настоящее время я жестко кодирую оригинальный xml в своем шаблоне XSL. Должен быть лучший способ сделать это.
Пожалуйста, помогите.