0

我有一个 xsl 文件,它将 html 嵌入 xml 并将其转换为 html。这不是我写的,我对 xsl 也一无所知,但我必须完成这项工作,因为它只是我工作项目的一小部分。

我发现了一个错误,它会<script>使用其正下方的标签呈现任何空标签。这是一个例子......

这:

<script type=”text/javascript” src=”…”&gt;</script>
<p>…&lt;/p>

渲染成这样...

<script type=”text/javascript” src=”…”&gt;<p>…&lt;/p></script>

这是现有的 xsl...

<xsl:template match="script">
    <script>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </script>
</xsl:template>

这是整个 xsl 文件。注意:我在尝试一些修复时更改了脚本转换。仍然得到同样的错误......

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="p">
    <p>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </p>
</xsl:template>

<xsl:template match="script">
    <xsl:element name="script">
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:value-of select="." />
    </xsl:element>
</xsl:template>


    <xsl:template match="option">
    <option>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </option>
</xsl:template>

<xsl:template match="select">
    <select>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </select>
</xsl:template>

<xsl:template match="object">
    <object>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </object>
</xsl:template>

<xsl:template match="param">
    <param>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </param>
</xsl:template>

<xsl:template match="label">
    <label>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </label>
</xsl:template>

<xsl:template match="input">
    <input>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </input>
</xsl:template>

<xsl:template match="textarea">
    <textarea>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </textarea>
</xsl:template>


<xsl:template match="nbsp">
&#160;
</xsl:template>

<xsl:template match="noscript">
    <xsl:element name="noscript">
      <xsl:apply-templates />
  </xsl:element>
</xsl:template>

<xsl:template match="a">
    <a>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:for-each select="href">
            <xsl:attribute name="href"><xsl:apply-templates select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:for-each select="title">
            <xsl:attribute name="title"><xsl:apply-templates select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:for-each select="onclick">
            <xsl:attribute name="onclick"><xsl:apply-templates select="." /></xsl:attribute>
        </xsl:for-each>

        <xsl:apply-templates />

    </a>
</xsl:template>


<xsl:template match="strong">
    <strong>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </strong>
</xsl:template>

    <xsl:template match="span">
        <span>
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:text>&#160;</xsl:text>
                </xsl:attribute>
            </xsl:for-each>

        <xsl:choose>
            <xsl:when test="string-length(.) > 0">
                <xsl:apply-templates />
            </xsl:when>
            <xsl:otherwise>
                <xsl:text>&#160;</xsl:text>
            </xsl:otherwise>
        </xsl:choose>
        </span>
    </xsl:template>

<xsl:template match="ul">
    <ul>
      <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </ul>
</xsl:template>

<xsl:template match="u">
    <u><xsl:apply-templates /></u>
</xsl:template>

<xsl:template match="ol">
    <ol><xsl:apply-templates /></ol>
</xsl:template>

<xsl:template match="li">
    <li>
      <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
  </li>
</xsl:template>

<xsl:template match="br">
  <br>  
    <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
  </br>
</xsl:template>

<xsl:template match="h1">
    <h1>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </h1>
</xsl:template>

<xsl:template match="h2">
    <h2>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </h2>
</xsl:template>

<xsl:template match="h3">
    <h3><xsl:apply-templates /></h3>
</xsl:template>

<xsl:template match="h4">
    <h4><xsl:apply-templates /></h4>
</xsl:template>

<xsl:template match="h5">
    <h5><xsl:apply-templates /></h5>
</xsl:template>

<xsl:template match="blockquote">
    <blockquote>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
  </blockquote>
</xsl:template>

<xsl:template match="img">
    <img>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
    </img>
</xsl:template>

<xsl:template match="i">
    <xsl:element name="i">
        <xsl:choose>
            <xsl:when test="string-length(.) > 0">
                <xsl:apply-templates />
            </xsl:when>
            <xsl:otherwise>
                <xsl:text>&#160;</xsl:text>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:element>
</xsl:template>

<xsl:template match="em">
    <xsl:element name="em">
        <xsl:choose>
            <xsl:when test="string-length(.) > 0 or node()">
                <xsl:apply-templates />
            </xsl:when>
            <xsl:otherwise>
                <xsl:text>&#160;</xsl:text>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:element>
</xsl:template>


<xsl:template match="div">

    <xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">

        <xsl:element name="div">
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:value-of select="." />             
                </xsl:attribute>
            </xsl:for-each>         

            <xsl:choose>
                <xsl:when test="string-length(.) > 0 or node()">
                    <xsl:apply-templates />
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>&#160;</xsl:text>
                </xsl:otherwise>
            </xsl:choose>

        </xsl:element>

    </xsl:if>

</xsl:template>

<xsl:template match="fieldset">

    <xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">

        <xsl:element name="div">
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:value-of select="." />
                </xsl:attribute>
            </xsl:for-each>

            <xsl:choose>
                <xsl:when test="string-length(.) > 0 or node()">
                    <xsl:apply-templates />
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>&#160;</xsl:text>
                </xsl:otherwise>
            </xsl:choose>

        </xsl:element>

    </xsl:if>

</xsl:template>

<xsl:template match="legend">

    <xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">

        <xsl:element name="div">
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:value-of select="." />
                </xsl:attribute>
            </xsl:for-each>

            <xsl:choose>
                <xsl:when test="string-length(.) > 0 or node()">
                    <xsl:apply-templates />
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>&#160;</xsl:text>
                </xsl:otherwise>
            </xsl:choose>

        </xsl:element>

    </xsl:if>

</xsl:template>

<xsl:template match="sup">
    <sup>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </sup>
</xsl:template>

<xsl:template match="font">
    <font>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </font>
</xsl:template>

<xsl:template match="table">
    <table>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </table>
</xsl:template>

<xsl:template match="tbody">
    <tbody>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </tbody>
</xsl:template>

<xsl:template match="tr">
    <tr>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </tr>
</xsl:template>

<xsl:template match="td">
    <td>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </td>
</xsl:template>

<xsl:template match="b">
    <b>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </b>
</xsl:template>

<xsl:template match="hr">
    <hr>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </hr>
</xsl:template>

</xsl:stylesheet>
4

2 回答 2

0

这实际上并不能解决您的问题(我认为),但我将其作为答案给出,因为它太长而无法放入评论中......

XSLT 中有相当多的重复。许多模板似乎都遵循相同的模式。例如

<xsl:template match="h1"> 
    <h1> 
        <xsl:for-each select="@*"> 
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute> 
        </xsl:for-each> 
        <xsl:apply-templates /> 
    </h1> 
</xsl:template> 

在这种情况下,所做的只是复制h1元素,包括它的属性,然后是子元素。

在这种情况下,不需要有这么多单独的模板。可以有一个通用模板来处理这种情况。事实上,我们需要的是被称为“身份转换”的通用 XSLT 设计模式

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output method="xml" indent="yes"/>

   <xsl:template match="@*|node()">
      <xsl:copy>
         <xsl:apply-templates select="@*|node()"/>
      </xsl:copy>
   </xsl:template>
</xsl:stylesheet>

它自己会照原样复制您的 XML,而无需进行任何更改。您只需要使用其他需要进行其他处理的模板对其进行扩展,而不仅仅是输出一个元素不变(例如,在span的模板中,有额外的处理来添加样式属性)。XSLT 将优先于更具体的模板匹配(匹配特定名称的匹配),而不是上面显示的通用模板匹配。

因此,我建议删除 XSLT 中的大多数特定模板,包括匹配scriptp的模板,而只添加身份转换的通用模板匹配。事实上,您可能希望从基本的恒等变换开始,检查其是否有效,然后为需要额外处理的每种情况一次添加一个模板。

于 2012-08-08T22:30:22.383 回答
0

首先,我要确保script模板是产生输出的模板。class要检查,您可以在开始<script>标签中添加一个虚拟属性。

也尝试<xsl:apply-templates />从模板中删除,使其看起来像这样;

<xsl:template match="script">
    <script class="dummy">
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="."/>
            </xsl:attribute>
        </xsl:for-each>
    </script>
</xsl:template>
于 2012-08-08T23:15:43.220 回答