是否可以通过实现增量原理来创建唯一的id(此处为属性"path"的值(?
- 对于3级深度递归,例如,如果在第三级上有同级,它看起来像"1/1/1"或"1/1/2">
- 我可以承认,从XSLT实现的技术角度来看,在+1增量计数之前使用级别前缀是有用的。这种情况也是正确的。最重要的是组装唯一id("path"(
1-源
<root>
<object id="a" id-3="value"/>
<object id="b" id-3="value"/>
<object id="c" id-3="value"/>
<object id="aa" parent-id="a" id-3="value"/>
<object id="aaa" parent-id="aa" id-3="value"/>
<object id="aaaa" parent-id="aaa" id-3="value"/>
<object id="bb" parent-id="b" id-3="value"/>
<object id="bbb" parent-id="bb" id-3="value"/>
<object id="bbbb-1" parent-id="bbb" id-3="value"/> <!-- note - siblings-->
<object id="bbbb-2" parent-id="bbb" id-3="value"/> <!-- note - siblings-->
<object id="cc" parent-id="c" id-3="value"/>
<object id="ccc" parent-id="cc" id-3="value"/>
<object id="cccc" parent-id="ccc" id-3="value"/>
</root>
2-SLT(不生成"路径"(
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exslt="http://exslt.org/common">
<xsl:key name="object-by-id" match="object" use="@id"/>
<xsl:key name="object-by-parent-id" match="object" use="string(@parent-id)"/>
<xsl:variable name="fold-rtf">
<xsl:apply-templates select="/" mode="fold"/>
</xsl:variable>
<xsl:variable name="folded-tree" select="exslt:node-set($fold-rtf)"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="object/@*[last()]">
<xsl:variable name="current" select=".."/>
<xsl:copy/>
<xsl:for-each select="$folded-tree">
<xsl:for-each select="key('object-by-id',$current/@id)">
<!-- ============================= -->
<xsl:for-each select="ancestor-or-self::*">
<xsl:attribute name="path">
<xsl:value-of select="position()"/>
</xsl:attribute>
</xsl:for-each>
<!-- ============================= -->
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<xsl:template match="/|*" mode="fold">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates select="key('object-by-parent-id',string(@id))" mode="fold">
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
3假设输出
<root>
<object id="a" id-3="value" path="1"/>
<object id="b" id-3="value" path="2"/>
<object id="c" id-3="value" path="3"/>
<object id="aa" parent-id="a" id-3="value" path="1/1"/>
<object id="aaa" parent-id="aa" id-3="value" path="1/1/1"/>
<object id="aaaa" parent-id="aa" id-3="value" path="1/1/1/1"/>
<object id="bb" parent-id="b" id-3="value" path="2/1"/>
<object id="bbb" parent-id="bb" id-3="value" path="2/1/1"/>
<object id="bbbb-1" parent-id="bbb" id-3="value" path="2/1/1/1"/> <!-- note - siblings-->
<object id="bbbb-2" parent-id="bbb" id-3="value" path="2/1/1/2"/> <!-- note - siblings-->
<object id="cc" parent-id="c" id-3="value" path="3/1"/>
<object id="ccc" parent-id="cc" id-3="value" path="3/1/1"/>
<object id="cccc" parent-id="ccc" id-3="value" path="3/1/1/1"/>
</root>
我认为您可以使用xsl:number
:
<xsl:template match="object/@*[last()]">
<xsl:variable name="current" select=".."/>
<xsl:copy/>
<xsl:for-each select="$folded-tree">
<xsl:for-each select="key('object-by-id',$current/@id)">
<xsl:attribute name="path">
<xsl:number level="multiple" format="1/1"/>
</xsl:attribute>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
https://xsltfiddle.liberty-development.net/pNmC4HV