我的代码表示有问题。我的XSLT正确处理了此问题,但是输出很丑陋,与预期不符。通常,pretty-print
函数可以完美运行,但更改后却无法运行,我也不知道该怎么做。我认为我在这里使用的<xsl:apply-templates>
有问题。漂亮的打印后,有没有办法得到漂亮的代码?
作为注释:我正在使用XSLT版本1,我正在使用Altova XMLSpy进行编码。
这是我的XML:
<University>
<Students>
<Info>Example 01</Info>
<List>
<ListEntry>
<Info>This is my first entry.</Info>
</ListEntry>
<ListEntry>
<Info>This is my second entry.</Info>
</ListEntry>
</List>
</Students>
<Students>
<Info>Example 02</Info>
</Students>
<Students>
<Info>Example 03</Info>
</Students>
<AlternativeStudents>
<Students>
<Info>Alternative Example 04</Info>
<Info>Alternative Example 05</Info>
</Students>
</AlternativeStudents>
</University>
这是我的XSLT:
<!-- UNIVERSITY -->
<xsl:template match="University">
<div data-class="greycontainer">
<p data-role="heading">
<xsl:text>STUDENTS</xsl:text>
</p>
<ul>
<xsl:apply-templates/>
</ul>
</div>
</xsl:template>
<!-- STUDENTS -->
<xsl:template match="Students">
<xsl:apply-templates/>
<!-- "or" for AlternativeStudents -->
<xsl:if test="following-sibling::*[1][self::AlternativeStudents]">
<li class="parablock bold_">
<xsl:text>or</xsl:text>
</li>
</xsl:if>
</xsl:template>
<!-- ALTERNATIVESTUDENTS -->
<xsl:template match="AlternativeStudents>
<xsl:apply-templates/>
</xsl:template>
<!-- INFO IN LISTENTRY AND STUDENTS -->
<xsl:template match="ListEntry/Info | Students/Info">
<xsl:choose>
<!-- First -->
<xsl:when test="name(preceding-siblings::*[1])!='Info'">
<li>
<xsl:apply-templates/>
</li>
</xsl:when>
<!-- Following -->
<xsl:otherwise>
<li class="parablock">
<xsl:apply-templates/>
</li>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- LIST -->
<xsl:template match="List">
<ul>
<xsl:apply-templates/>
</ul>
</xsl:template>
<!-- LISTENTRY -->
<xsl:template match="ListEntry>
<xsl:apply-templates/>
</xsl:template>
正如我提到的,结果是正确的,只是缩进和表示。那应该是这样的:
<div data-class="greycontainer">
<p data-role="heading">STUDENTS</p>
<ul>
<li>Example 01</li>
<ul>
<li>This is the first entry.</li>
<li>This is the second entry.</li>
</ul>
<li>Example 02</li>
<li>Example 03</li>
<li class="parablock bold_">or</li>
<li>AlternativeExample 04</li>
<li class="parablock">AlternativeExample 05</li>
</ul>
</div>
但是现在看起来像这样:
<div data-class="greycontainer"><p data-role="heading">STUDENTS</p><ul>
<li>Example 01</li>
<ul>
<li>This is the first entry.</li>
<li>This is the second entry.</li>
</ul>
<li>Example 02</li>
<li>Example 03</li>
<li class="parablock bold_">or</li>
<li>AlternativeExample 04</li>
<li class="parablock">AlternativeExample 05</li>
</ul></div>
答案 0 :(得分:3)
如果您想要一致的缩进并且没有混合的内容输入,那么最简单的方法通常是添加空格剥离和标识,例如。
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
(输出方法html
并不是必需的,但是您的输出格式似乎是HTML,因此,如果您告诉XSLT处理器以已知的HTML内联元素或空元素进行序列化的方式,则可能会得到更好的结果。根据HTML规则而不是XML规则。
使用建议的方法,您在https://xsltfiddle.liberty-development.net/bdxtqK/2的示例看起来不错。