xsl 无法获取属性的值
xsl can not get the value of attribute
这与我在此处发布的一个问题有关 我首先尝试获取属性的值,但我似乎无法获取它,这里又是 xml:
<?xml version="1.0" encoding="utf-8" ?>
<root>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#"
xmlns:void="http://rdfs.org/ns/void#">
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_26321">
<skos:prefLabel xml:lang="fa">آبیس ماریزیای</skos:prefLabel>
....
<skos:prefLabel xml:lang="en">Abies mariesii</skos:prefLabel>
....
<skos:broader rdf:resource="http://aims.fao.org/aos/agrovoc/c_10"/>
</skos:Concept>
<skos:Concept rdf:about="http://aims.fao.org/skosmos/agrovoc/en/page/c_1591">
<skos:prefLabel xml:lang="ar">أشجار عيد الميلاد</skos:prefLabel>
....
<skos:prefLabel xml:lang="en">christmas trees</skos:prefLabel>
....
</skos:Concept>
....
<skos:Concept>
<ns0:isUsedAs rdf:resource="http://aims.fao.org/skosmos/agrovoc/en/page/c_7776"/>
<ns0:isUsedAs rdf:resource="http://aims.fao.org/skosmos/agrovoc/en/page/c_1591"/>
</skos:Concept>
</rdf:RDF>
</root>
我有以下模板:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
....
xmlns:void="http://rdfs.org/ns/void#">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:narrowMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:exactMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/skos:altLabel" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/skos:prefLabel" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/ns0:isUsedAs" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="//ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="ns0:isUsedAs[@rdf:resource]" />
</xsl:template>
</xsl:stylesheet>
我只是想用我已有的主模板获取 skos:Concept rdf:resource 的属性值,但我似乎无法打印这些值。
我也试过使用变量:
<xsl:variable name="ns0isUsedAsvar" select="skos:Concept/ns0:isUsedAs[@rdf:resource]"/ >
然后调用那个变量:
<xsl:template match="//ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="$ns0isUsedAsvar" />
</xsl:template>
但我似乎无法让它发挥作用。可能是什么问题呢? TIA!
更新(回应 Eric):
这是我的名称空间声明:
而且我想我能够申报所有这些。按照您的提示使用以下 xslt:
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/ns0:isUsedAs" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
我得到的是:
START HERE
=LDR 00000nam 2200000Ia 4500
آبیس ماریزیای大白叶冷杉Abies mariesii
这可能意味着它获取所有具有属性 rdf:resource 的节点元素。
update2:特定文件可以在这里找到:http://128.199.159.143/merged-file.xml
更新3:
我目前使用的转换可以在下面找到,我将在这个 xslt 中添加代码:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
xmlns:marc="http://www.loc.gov/MARC21/slim"
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ns1="http://art.uniroma2.it/ontologies/vocbench#"
xmlns:void="http://rdfs.org/ns/void#">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:narrowMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:exactMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/skos:altLabel" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="skos:narrowMatch">
<xsl:text>=300 \$a</xsl:text><xsl:value-of select="@rdf:resource" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:exactMatch">
<xsl:text>=300 \$a</xsl:text><xsl:value-of select="@rdf:resource" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:Concept[ns0:hasStatus]">
<xsl:text>=300 \$a</xsl:text><xsl:value-of select="@rdf:about" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:Concept">
<xsl:for-each select="skos:prefLabel|skos:Concept" />
<xsl:choose>
<xsl:when test="skos:broader">
<xsl:text>=301 \$abroader$b</xsl:text>
<xsl:value-of select="skos:prefLabel[@xml:lang='en']" />
<xsl:text>$c</xsl:text>
<xsl:value-of select="./@rdf:about" />
<xsl:text> </xsl:text>
</xsl:when>
<xsl:when test="skos:narrower">
<xsl:text>=302 \$anarrower$b</xsl:text>
<xsl:value-of select="skos:prefLabel[@xml:lang='en']" />
<xsl:text>$c</xsl:text>
<xsl:value-of select="./@rdf:about" />
<xsl:text> </xsl:text>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="skos:definition/skos:Description/rdf-value">
<xsl:text>=303 \$aDefinition$b</xsl:text><xsl:value-of select="@xml:lang" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:Concept/skos:altLabel">
<xsl:text>=304 \$aAltLabel$b</xsl:text><xsl:value-of select="." />
<xsl:text>$c</xsl:text>
<xsl:value-of select="./@xml:lang" />
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
更新 4:
我尝试过的 xslt 基于我的问题使用了一个小样本:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
....
xmlns:void="http://rdfs.org/ns/void#">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/rdf:Description" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
</xsl:stylesheet>
详尽的 xslt 会更好。
首先,检查 xml 输入和 xslt 样式表中的所有名称空间是否都已正确声明。
然后,您的 "main template" 和 "variable call" 都无法工作。你有上下文问题。
对于您的模板:
首先,你应该转义匹配中的'//',它无用且令人困惑,匹配的上下文从来都不是绝对的,它总是相对于应用模板上下文。
其次,当你在你的模板中时,上下文已经是一个 "ns0:isUsedAs",你不需要将它放在 xpath 中。所以直接试试 :
<xsl:value-of select="@rdf:resource" />
或最终
<xsl:value-of select="self::ns0:isUsedAs[@rdf:resource]" />
注意 self:: 轴,没有显式轴,它是使用的子轴,然后在您的尝试中,您隐含地寻找 ns0:isUsedAs 子轴 ns0:isUsedAs。
对于您的变量,它们是几个问题。如果你想为此目的使用变量,请谨慎,你需要在正确的上下文中定义它。可能在 skos:Concept 模板中。然后,只需使用 :
<xsl:template match="skos:Concept">
...
<xsl:variable name="ns0isUsedAsvar" select="ns0:isUsedAs[@rdf:resource]"/>
...
</xsl:template>
改变
<xsl:template match="ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
到
<xsl:template match="ns0:isUsedAs[@rdf:resource][1]">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
如果您希望模板将第一个 ns0:isUsedAs
与 rdf:resource
属性相匹配,并且您希望该模板只处理这些元素中的第一个。
或者,如果您想保持模板不变,只将第一个模板与您的 xsl:apply-templates
匹配,您应该将应用模板行更改为:
<xsl:apply-templates select="skos:Concept/ns0:isUsedAs[@rdf:resource][1]" />
这与我在此处发布的一个问题有关
<?xml version="1.0" encoding="utf-8" ?>
<root>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#"
xmlns:void="http://rdfs.org/ns/void#">
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_26321">
<skos:prefLabel xml:lang="fa">آبیس ماریزیای</skos:prefLabel>
....
<skos:prefLabel xml:lang="en">Abies mariesii</skos:prefLabel>
....
<skos:broader rdf:resource="http://aims.fao.org/aos/agrovoc/c_10"/>
</skos:Concept>
<skos:Concept rdf:about="http://aims.fao.org/skosmos/agrovoc/en/page/c_1591">
<skos:prefLabel xml:lang="ar">أشجار عيد الميلاد</skos:prefLabel>
....
<skos:prefLabel xml:lang="en">christmas trees</skos:prefLabel>
....
</skos:Concept>
....
<skos:Concept>
<ns0:isUsedAs rdf:resource="http://aims.fao.org/skosmos/agrovoc/en/page/c_7776"/>
<ns0:isUsedAs rdf:resource="http://aims.fao.org/skosmos/agrovoc/en/page/c_1591"/>
</skos:Concept>
</rdf:RDF>
</root>
我有以下模板:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
....
xmlns:void="http://rdfs.org/ns/void#">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:narrowMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:exactMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/skos:altLabel" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/skos:prefLabel" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/ns0:isUsedAs" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="//ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="ns0:isUsedAs[@rdf:resource]" />
</xsl:template>
</xsl:stylesheet>
我只是想用我已有的主模板获取 skos:Concept rdf:resource 的属性值,但我似乎无法打印这些值。 我也试过使用变量:
<xsl:variable name="ns0isUsedAsvar" select="skos:Concept/ns0:isUsedAs[@rdf:resource]"/ >
然后调用那个变量:
<xsl:template match="//ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="$ns0isUsedAsvar" />
</xsl:template>
但我似乎无法让它发挥作用。可能是什么问题呢? TIA!
更新(回应 Eric): 这是我的名称空间声明: 而且我想我能够申报所有这些。按照您的提示使用以下 xslt:
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/ns0:isUsedAs" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
我得到的是:
START HERE
=LDR 00000nam 2200000Ia 4500
آبیس ماریزیای大白叶冷杉Abies mariesii
这可能意味着它获取所有具有属性 rdf:resource 的节点元素。
update2:特定文件可以在这里找到:http://128.199.159.143/merged-file.xml
更新3:
我目前使用的转换可以在下面找到,我将在这个 xslt 中添加代码:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
xmlns:marc="http://www.loc.gov/MARC21/slim"
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ns1="http://art.uniroma2.it/ontologies/vocbench#"
xmlns:void="http://rdfs.org/ns/void#">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:narrowMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="rdf:Description/skos:exactMatch" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept" />
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/skos:altLabel" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="skos:narrowMatch">
<xsl:text>=300 \$a</xsl:text><xsl:value-of select="@rdf:resource" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:exactMatch">
<xsl:text>=300 \$a</xsl:text><xsl:value-of select="@rdf:resource" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:Concept[ns0:hasStatus]">
<xsl:text>=300 \$a</xsl:text><xsl:value-of select="@rdf:about" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:Concept">
<xsl:for-each select="skos:prefLabel|skos:Concept" />
<xsl:choose>
<xsl:when test="skos:broader">
<xsl:text>=301 \$abroader$b</xsl:text>
<xsl:value-of select="skos:prefLabel[@xml:lang='en']" />
<xsl:text>$c</xsl:text>
<xsl:value-of select="./@rdf:about" />
<xsl:text> </xsl:text>
</xsl:when>
<xsl:when test="skos:narrower">
<xsl:text>=302 \$anarrower$b</xsl:text>
<xsl:value-of select="skos:prefLabel[@xml:lang='en']" />
<xsl:text>$c</xsl:text>
<xsl:value-of select="./@rdf:about" />
<xsl:text> </xsl:text>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="skos:definition/skos:Description/rdf-value">
<xsl:text>=303 \$aDefinition$b</xsl:text><xsl:value-of select="@xml:lang" />
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="skos:Concept/skos:altLabel">
<xsl:text>=304 \$aAltLabel$b</xsl:text><xsl:value-of select="." />
<xsl:text>$c</xsl:text>
<xsl:value-of select="./@xml:lang" />
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
更新 4: 我尝试过的 xslt 基于我的问题使用了一个小样本:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
....
xmlns:void="http://rdfs.org/ns/void#">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="root">
<xsl:for-each select="rdf:RDF">
<xsl:text>START HERE</xsl:text>
<xsl:text> </xsl:text>
<xsl:text>=LDR 00000nam 2200000Ia 4500</xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="skos:Concept/rdf:Description" />
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
</xsl:stylesheet>
详尽的 xslt 会更好。
首先,检查 xml 输入和 xslt 样式表中的所有名称空间是否都已正确声明。 然后,您的 "main template" 和 "variable call" 都无法工作。你有上下文问题。
对于您的模板: 首先,你应该转义匹配中的'//',它无用且令人困惑,匹配的上下文从来都不是绝对的,它总是相对于应用模板上下文。 其次,当你在你的模板中时,上下文已经是一个 "ns0:isUsedAs",你不需要将它放在 xpath 中。所以直接试试 :
<xsl:value-of select="@rdf:resource" />
或最终
<xsl:value-of select="self::ns0:isUsedAs[@rdf:resource]" />
注意 self:: 轴,没有显式轴,它是使用的子轴,然后在您的尝试中,您隐含地寻找 ns0:isUsedAs 子轴 ns0:isUsedAs。
对于您的变量,它们是几个问题。如果你想为此目的使用变量,请谨慎,你需要在正确的上下文中定义它。可能在 skos:Concept 模板中。然后,只需使用 :
<xsl:template match="skos:Concept">
...
<xsl:variable name="ns0isUsedAsvar" select="ns0:isUsedAs[@rdf:resource]"/>
...
</xsl:template>
改变
<xsl:template match="ns0:isUsedAs">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
到
<xsl:template match="ns0:isUsedAs[@rdf:resource][1]">
<xsl:text>=305 \$aisUsedAs$b</xsl:text>
<xsl:value-of select="@rdf:resource" />
</xsl:template>
如果您希望模板将第一个 ns0:isUsedAs
与 rdf:resource
属性相匹配,并且您希望该模板只处理这些元素中的第一个。
或者,如果您想保持模板不变,只将第一个模板与您的 xsl:apply-templates
匹配,您应该将应用模板行更改为:
<xsl:apply-templates select="skos:Concept/ns0:isUsedAs[@rdf:resource][1]" />