我需要這種結構如何什麼是使用XSLT-1.0最佳的解決方案使用XSLT的1.0
<A>
<B>value1</B>
</A>
<A>
<B>value2</B>
</A>
變成
<A>
<B>value1<B>
<B>value2<B>
</A>
轉換XML結構? 謝謝!
PS:我想這個代碼:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>
<xsl:key name="group_a" match="//A" use="B"/>
<xsl:template match="/Test"> <a-node> <xsl:for-each select="//A"> <b-node>
<xsl:value-of select="//A/B"/> </b-node> </xsl:for-each> </a-node>
</xsl:template>
</xsl:stylesheet>
但只返回第一個值:
<?xml version="1.0" encoding="utf-8"?> <a-node mlns:fo="http://www.w3.org/1999/XSL/Format"> <b-node>value1</b-node> <b-node>value1</b-node> </a-node>
,但我需要:
<?xml version="1.0" encoding="utf-8"?> <a-node xmlns:fo="http://www.w3.org/1999/XSL/Format"> <b-node>value1</b-node> <b-node>value2</b-node> </a-node>
功能正確但效率低下。最好使用模板樣式並避免不必要的//操作符的使用。 –
@Sean - 確實 - 同意永遠不會使用//但自OP的xml示例沒有根元素以來沒有選擇:) – StuartLC