xsl:将多个项目存储在变量或参数中以供以后使用
我需要将 xml 转换为某种自定义 xml 格式。
在新格式中,我将有许多 sections
节点,对于每个节点,我使用以下方法创建一个唯一的 id:
<xsl:attribute name="identifier">
<xsl:variable name="uid" select="util:randomUUID()"/>A<xsl:value-of select="util:toString($uid)"/>
</xsl:attribute>
我需要一种方法将所有这些 Id 存储在列表或数组中,以便我可以引用它从其他模板返回并在 for-each 循环中使用它们。
有没有办法用 xsl 做到这一点?
感谢您的帮助
I need to transform an xml to some custom xml format.
In the new format i would have many sections
node and for each node i am creating a unique id using:
<xsl:attribute name="identifier">
<xsl:variable name="uid" select="util:randomUUID()"/>A<xsl:value-of select="util:toString($uid)"/>
</xsl:attribute>
I need a way to store all of these Ids in a list or array so that i can refer it back from some other template and use them in for-each loop.
Is there a way to do this with xsl?
Thanks for any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
全局声明这些:
然后使用:
使用 XSLT 2.0:
Have these globally declared:
Then later use:
Using XSLT 2.0: