1

我正在转换这个 XML:

<?xml version='1.0' encoding='utf-8'?>
<song xmlns="http://openlyrics.info/namespace/2009/song" version="0.8" createdIn="OpenLP 2.0.1" modifiedIn="OpenLP 2.0.1" modifiedDate="2012-03-14T02:21:52">
  <properties>
    <titles>
      <title>Amazing Grace</title>
    </titles>
    <authors>
      <author>John Newton</author>
    </authors>
  </properties>
  <lyrics>
    <verse name="v1">
      <lines>Amazing grace, how sweet the sound<br/>That saved a wretch like me<br/>I once was lost, but now am found<br/>Was blind but now I see</lines>
    </verse>

使用这个 XSLT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:o="http://openlyrics.info/namespace/2009/song">
<xsl:output method="html" />
<xsl:template match="o:song">
<html>
<body>
<h2><xsl:value-of select="o:properties/o:titles/o:title"/><br /></h2>
<h3><xsl:for-each select="o:properties/o:authors/o:author">
  <xsl:value-of select="."/><br />
  </xsl:for-each></h3>
  <xsl:for-each select="o:lyrics/o:verse/o:lines">
  <xsl:copy-of select="." />
  </xsl:for-each>
</body>
</html>
</xsl:template>

“行”的每一部分都有一个我想保留的 br/ 标签,这就是我使用 copy-of 而不是 value-of 的原因。这就是我试图从“行”中得到的:

<lines xmlns="http://openlyrics.info/namespace/2009/song">Amazing grace, how sweet the sound<br/>That saved a wretch like me

相反,XSLT 将 br/ 标记更改为

<br></br>

并产生两个换行符,而不仅仅是我想要的一个。

<lines xmlns="http://openlyrics.info/namespace/2009/song">Amazing grace, how sweet the sound<br></br>

有没有办法防止这种 br/ 转换并保留 XML 中存在的 br/ 标签,同时仍然使用副本?我在这里做错了什么?

注意:奇怪的是,当我删除“song”标签中的命名空间并将XSLT写成好像没有命名空间一样,例如

  <xsl:for-each select="lyrics/verse/lines">
  <xsl:copy-of select="." />

那么我没有这个问题。br/ 标签被保留。所以我觉得这与使用命名空间有关。

有任何想法吗?

4

1 回答 1

4

问题不在于 XSLT,而是来自 XSLT 的结果文档被序列化为字符串。

您已经在序列化程序使用的 XSLT 中指定了“HTML”的输出方法,但并非您输出的所有内容实际上都是 HTML。Lines不是 HTML 元素,此外,因为它有一个命名空间,所有子br元素当前都是命名空间的一部分,因此这些可能也不被视为 HTML 元素。

当您删除命名空间时,br将被视为 HTML 元素,并且您会得到预期的行为,因为序列化过程知道如何处理它们。

解决此问题的一种方法是确保br元素在没有命名空间的情况下输出。不要对行使用xsl:for-each,而是使用xsl:apply-templates

<xsl:apply-templates select="o:lyrics/o:verse/o:lines" />

然后你会有模板匹配br。特别是,匹配br的模板将输出没有命名空间的元素。

试试这个 XSLT:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:o="http://openlyrics.info/namespace/2009/song" exclude-result-prefixes="o">
   <xsl:output method="html"/>

   <xsl:template match="o:song">
      <html>
         <body>
            <h2>
               <xsl:value-of select="o:properties/o:titles/o:title"/>
               <br/>
            </h2>
            <h3>
               <xsl:for-each select="o:properties/o:authors/o:author">
                  <xsl:value-of select="."/>
                  <br/>
               </xsl:for-each>
            </h3>
            <xsl:apply-templates select="o:lyrics/o:verse/o:lines"/>
         </body>
      </html>
   </xsl:template>

   <xsl:template match="o:lines">
      <xsl:copy>
         <xsl:apply-templates/>
      </xsl:copy>
   </xsl:template>

   <xsl:template match="o:br">
      <br/>
   </xsl:template>
</xsl:stylesheet>

这应该输出以下内容

<html>
<body>
<h2>Amazing Grace<br></h2>
<h3>John Newton<br></h3>
<lines xmlns="http://openlyrics.info/namespace/2009/song">
   Amazing grace, how sweet the sound<br xmlns="">
   That saved a wretch like me<br xmlns="">
   I once was lost, but now am found<br xmlns="">
   Was blind but now I see
</lines>
</body>
</html>

在浏览器中查看时,这至少应该给你一个换行符。

于 2013-08-10T08:52:18.373 回答