我有一个像这样的xml文件,
<content>
<ol>
<li> List<span style="color: rgb(255,0,255);">The scopeeeee of</span>this project is
<ol>
<li>nested list1</li>
<li>nested <span style="color: rgb(255,0,255);">The scope of this project is</span> list1</li>
<li>nested list1</li>
<li>nested list1</li>
<li>nested list1</li>
</ol>
</li>
<li>
<p>List<span style="color: rgb(255,0,255);">The scope of this project is to:</span></p>
</li>
<li>
<p>List<span style="color: rgb(255,0,255);">The scope of this project is to:</span></p>
</li>
</ol>
</content>
我需要使用XSLT
将上面的xml转换为跟随xml预期产出,
<content>
<orderedList>
<liItem>
<para>List<c type="color: rgb(255,0,255);">The scopeeeee of this project is to:</c>jkhsdlkjfh</para>
</liItem>
<orderedList>
<liItem>
<para>nested list1</para>
</liItem>
<liItem>
<para>nested <c type="color: rgb(255,0,255);">The scope of this project is</c>list1</para>
</liItem>
<liItem>
<para>nested list1</para>
</liItem>
<liItem>
<para>nested list1</para>
</liItem>
<liItem>
<para>nested list1</para>
</liItem>
</orderedList>
<liItem>
<para> List<c type="color: rgb(255,0,255);">The scope of this project is to:</c></para>
</liItem>
<liItem>
<para> List<c type="color: rgb(255,0,255);">The scope of this project is to:</c></para>
</liItem>
</orderedList>
</content>
如您所见,li项目中的文本内容和span节点必须覆盖输出中的<para>
节点。
我写了以下xsl来获取此输出,
<xsl:template match="ol">
<orderedList>
<xsl:apply-templates/>
</orderedList>
</xsl:template>
<xsl:template match="li[not(descendant::ol)]" >
<liItem>
<para>
<xsl:apply-templates />
</para>
</liItem>
</xsl:template>
<xsl:template match="li[descendant::ol]" >
<liItem>
<para>
<xsl:apply-templates select="node()[parent::li][following-sibling::ol]"/>
</para>
</liItem>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="span">
<c type="{@style}">
<xsl:apply-templates/>
</c>
</xsl:template>
<xsl:template match="li/p">
<xsl:apply-templates />
</xsl:template>
上面xsl的唯一问题是在另一个<ol>
项目中有<ol>
时。我很难找到一种方法将<para>
节点添加到位于<li>
和<ol>
节点之间的文本内容中。
当前输出如下,
<content>
<orderedList>
<liItem>
<para> List<c type="color: rgb(255,0,255);">The scopeeeee of</c>this project is</para>
</liItem> List<c type="color: rgb(255,0,255);">The scopeeeee of</c>this project is
<orderedList>
<liItem><para>nested list1</para></liItem>
<liItem><para>nested <c type="color: rgb(255,0,255);">The scope of this project is</c>list1</para></liItem>
<liItem><para>nested list1</para></liItem>
<liItem><para>nested list1</para></liItem>
<liItem><para>nested list1</para></liItem>
</orderedList>
<liItem><para> List<c type="color: rgb(255,0,255);">The scope of this project is to:</c></para></liItem>
<liItem><para> List<c type="color: rgb(255,0,255);">The scope of this project is to:</c></para></liItem>
</orderedList>
</content>
任何人都可以建议我如何修改我的代码以获得预期的输出..
答案 0 :(得分:4)
如果ol
元素始终位于li
元素中的文本后面,则可以将模板更改为
<xsl:template match="li[descendant::ol]" >
<liItem>
<para>
<xsl:apply-templates select="node()[following-sibling::ol]"/>
</para>
</liItem>
<xsl:apply-templates select="ol"/>
</xsl:template>
或者也许是这样,如果您确实想要ol
内的liItem
元素,而不是para
<xsl:template match="li[descendant::ol]" >
<liItem>
<para>
<xsl:apply-templates select="node()[following-sibling::ol]"/>
</para>
<xsl:apply-templates select="ol"/>
</liItem>
</xsl:template>
在任何一种情况下,您都可以将匹配li
的两个模板合并为一个模板;像这样:
<xsl:template match="li" >
<liItem>
<para>
<xsl:apply-templates select="node() except ol"/>
</para>
<xsl:apply-templates select="ol"/>
</liItem>
</xsl:template>
或者,如果您想要处理单个列表项中的多个ol
元素,或者如果您在ol
元素之后也有文字,则可以使用xsl:for-each-group
< / p>
<xsl:template match="li" >
<liItem>
<xsl:for-each-group select="node()" group-adjacent="boolean(self::ol)">
<xsl:choose>
<xsl:when test="current-grouping-key() or not(normalize-space())">
<xsl:apply-templates select="current-group() "/>
</xsl:when>
<xsl:otherwise>
<para>
<xsl:apply-templates select="current-group() "/>
</para>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each-group>
</liItem>
</xsl:template>