0

我正在尝试使用 XSLT 将 XML 歌词数据库转换为 HTML。我的 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>

我从其他帖子中知道我需要将上述命名空间添加到我的 XSLT 中。我试过了,我的 XSLT 看起来像这样:

<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:lyrics="http://openlyrics.info/namespace/2009/song">

<xsl:template match="lyrics:song">
  <h3><xsl:value-of select="properties/titles/title"/></h3>
  <h4><xsl:value-of select="properties/authors/author"/></h4>
  <xsl:for-each select="lyrics/verse">
  <xsl:copy-of select="lines" /><br /><br />
  </xsl:for-each>
</xsl:template>
</xsl:stylesheet>

不幸的是,此代码仍然无法正常工作。我的 XSLT 仅在我消除 XML 中的 xmlns 条目并直接匹配“歌曲”时才有效。关于我命名为“歌词”的 xmlns 命名空间,谁能指出我做错了什么?我是 XML/XSLT 的新手。提前致谢!

4

1 回答 1

1

您需要在属于命名空间“ ”的任何元素名称处使用命名空间前缀“lyrics ”。这都是元素名称,因为它是默认命名空间。尝试这样的事情(未经测试):http://openlyrics.info/namespace/2009/song

<xsl:template match="lyrics:song">
  <h3><xsl:value-of select="lyrics:properties/lyrics:titles/lyrics:title"/></h3>
  <h4><xsl:value-of select="lyrics:properties/lyrics:authors/lyrics:author"/></h4>
  <xsl:for-each select="lyrics:lyrics/lyrics:verse">
  <xsl:copy-of select="lyrics:lines" /><br /><br />
  </xsl:for-each>
</xsl:template>
</xsl:stylesheet>
于 2013-07-19T05:53:02.453 回答