我正在尝试转换以下XML:
<entities xmlns="http://ws.wso2.org/dataservice"><entityIds>
137651b03d18c0efee947f8bda341fb1
</entityIds>
<entityIds>
aa88ce76d454a0135c89bfbd4def62cd
</entityIds>
</entities>
使用以下
的XSL<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:p="http://ws.wso2.org/dataservice">
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
<xsl:template match="/">
<urlDetails>
<customerId>
<xsl:value-of select="//p:entityList/p:entity[1]/p:customerId" />
</customerId>
<entityIds>
<xsl:apply-templates/>
<xsl:for-each select="//p:entityList/p:entity">
<xsl:value-of select="p:entityId" />,
</xsl:for-each>
</entityIds>
</urlDetails>
</xsl:template>
</xsl:stylesheet>
我正在获得如下输出:
<?xml version="1.0" encoding="utf-8"?>
<urlDetails xmlns:p="http://ws.wso2.org/dataservice">
<customerId/>
<entityIds>
137651b03d18c0efee947f8bda341fb1
aa88ce76d454a0135c89bfbd4def62cd
</entityIds>
</urlDetails>
如何将逗号中的输出分隔为:
<?xml version="1.0" encoding="utf-8"?>
<urlDetails xmlns:p="http://ws.wso2.org/dataservice">
<customerId/>
<entityIds>
137651b03d18c0efee947f8bda341fb1 ,
aa88ce76d454a0135c89bfbd4def62cd
</entityIds>
</urlDetails>
我已经使用了字符串concat并使用了version2.0我使用了值分隔符,两者都没有工作。是否还有其他技术?
答案 0 :(得分:1)
你试过这个:
<xsl:for-each select="//p:entityList/p:entity">
<xsl:value-of select="p:entityId" /><xsl:text>,</xsl:text>
</xsl:for-each>
答案 1 :(得分:1)
在XSLT 2.0中,您应该能够删除for-each
(即将整个节点 set 传递给value-of
)并使用separator
,例如
<xsl:value-of select="//p:entityList/p:entity/p:entityId" separator=","/>
对于1.0 value-of
一次只处理一个节点,所以你需要for-each:
<xsl:for-each select="//p:entityList/p:entity/p:entityId">
<xsl:if test="position() > 1">,</xsl:if>
<xsl:value-of select="." />
</xsl:for-each>
if
确保您不会在列表中的第一个项之前添加额外的逗号。