gpt4 book ai didi

xml - XSLT:匹配元素与命名空间不起作用

转载 作者:行者123 更新时间:2023-12-04 17:04:24 29 4
gpt4 key购买 nike

我正在尝试使用 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 很陌生。提前致谢!

最佳答案

您需要使用 命名空间前缀 属于 的任何元素名称处的“歌词”命名空间 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>

关于xml - XSLT:匹配元素与命名空间不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17738496/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com