无法在XSLT中获取节点值

时间:2011-08-05 12:42:06

标签: xslt

我在这里遇到了这个奇怪的问题。我无法获取以下xml文件的节点值。谁能告诉我我的xslt文件或xml文件有什么问题?因为我可以让xslt在其他xml文件上运行,而且非常简单。所以我在这里失去了。    xml文件

   <catalog xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0" xmlns:xlink="http://www.w3.org/1999/xlink" name="Test Data">
    <service name="tss" serviceType="OpenDAP" base="http://virbo.org/metamag/viewDataFile.jsp?filetype=data&amp;docname="/>
    <dataset name="Scalar">
        <access serviceName="tss" urlPath="597C7956-742D-FEC6-D151-A37A7176E867"/>
        <documentation type="summary">Single variable time series</documentation>
    </dataset>
    <dataset name="Structure">
        <access serviceName="tss" urlPath="E981F1AF-EF4A-11FB-AFB6-F20218B07783"/>
        <documentation type="summary">Vector (three component) time series</documentation>
    </dataset>
    <dataset name="Sequence">
        <access serviceName="tss" urlPath="64C78182-9BDC-CBC4-56C5-679808F51398"/>
        <documentation type="summary">Spectrum time series</documentation>
    </dataset>
</catalog>

xslt文件

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html"/>
    <xsl:template match="/">
        <h2>database</h2>
    <li>    
            <xsl:for-each select="/catalog/dataset/access/@serviceName">
                <xsl:value-of select="."/>
            </xsl:for-each>
     </li> 
    </xsl:template>
</xsl:stylesheet>

但xslt文件适用于以下xml文件,只需将xpath更改为/ data / student / name / @ id

<data class="grade2">
    <student id="test1">
        <name id="1">Bitu Kumar</name>
        <course>MCA</course>
        <sem>6</sem>
        <marks>80</marks>
    </student>
    <student id="test2">
        <name id="2">Santosh Kumar</name>
        <course>MCA</course>
        <sem>5</sem>
        <marks>70</marks>
    </student>
    <student id="test3">
        <name id="3">Ashish</name>
        <course>M.Sc.</course>
        <sem>4</sem>
        <marks>80</marks>
    </student>
    <student id="test4">
        <name id="4">Mahesh</name>
        <course>MA</course>
        <sem>3</sem>
        <marks>80</marks>
    </student>
</data>

1 个答案:

答案 0 :(得分:0)

您的XSLT不尊重第一个XML文件中的命名空间。

你的第二个XML文件没有。

通过添加名称空间声明来修复您的XSLT,并更改您的XPath表达式,以便它使用您定义的任何名称空间前缀。

因此:

xmlns:myprefix="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"

...

/myprefix:catalog/myprefix:dataset/myprefix:access/@serviceName