无论特定 Id 如何,如何使用 XPath 选择类别 XML 节点?

Posted

技术标签:

【中文标题】无论特定 Id 如何,如何使用 XPath 选择类别 XML 节点?【英文标题】:How do I select the category XML nodes with XPath regardless of specific Id's? 【发布时间】:2013-03-06 05:09:57 【问题描述】:

在 C# 中,我使用以下代码将 XML 文件读入 XmlDocument。 在这样做时,我试图选择所有“类别”节点,而不管它们使用 XPath 的特定类别 ID。我总共有 200 多个类别,因此逐个选择它们并不是一个真正的选择。

我已经尝试过无数种“category”、“/category”、“//catalog/category”等变体。但是nodeList 总是返回null。我也尝试过关注以下网站以及其他许多网站。任何帮助或指导将不胜感激。

w3 schools

XPath Examples - MSDN

var doc = new XmlDocument();
doc.Load(filename);

XmlNodeList nodeList;
XmlNode root = doc.DocumentElement;

nodeList = root.SelectNodes("/catalog/category")



// Sample XML Document 

<?xml version="1.0" encoding="UTF-8"?>
<catalog xmlns="http://www.site.com/catalog/2012-10-31" catalog-id="sports">
    <header>
        <image-settings>
            <internal-location base-path="/"/>
            <view-types>
                <view-type>large</view-type>
                <view-type>small</view-type>
                <view-type>swatch</view-type>
            </view-types>
            <alt-pattern>$productname</alt-pattern>
            <title-pattern>$productname</title-pattern>
        </image-settings>
    </header>

    <category category-id="root">
        <display-name xml:lang="x-default">Store Catalog</display-name>
        <description xml:lang="x-default">Holds categories for Store</description>
        <online-flag>true</online-flag>
        <template/>
        <page-attributes>
            <page-title xml:lang="x-default">Store Catalog</page-title>
            <page-description xml:lang="x-default">Welcome to the Store</page-description>
        </page-attributes>
        <custom-attributes>
            <custom-attribute attribute-id="enableCompare">false</custom-attribute>
            <custom-attribute attribute-id="showInMenu">false</custom-attribute>
        </custom-attributes>
        <refinement-definitions>
            <refinement-definition type="category" bucket-type="none">
                <display-name xml:lang="x-default">Category</display-name>
                <sort-mode>category-position</sort-mode>
                <cutoff-threshold>5</cutoff-threshold>
            </refinement-definition>
        </refinement-definitions>
    </category>

    <category category-id="whats-new">
        <display-name xml:lang="x-default">NEW</display-name>
        <online-flag>true</online-flag>
        <parent>root</parent>
        <position>25.0</position>
        <template>rendering/category/categoryproducthits</template>
        <page-attributes>
            <page-title xml:lang="x-default">What's New - New at Store</page-title>
            <page-description xml:lang="x-default">Learn what's new at the store.</page-description>
        </page-attributes>
        <custom-attributes>
            <custom-attribute attribute-id="contentOnly">false</custom-attribute>
            <custom-attribute attribute-id="displaySubNav">false</custom-attribute>
            <custom-attribute attribute-id="dropdownNavSlot1">dropdown-left7</custom-attribute>
            <custom-attribute attribute-id="enableCompare">false</custom-attribute>
            <custom-attribute attribute-id="enableslotat3">true</custom-attribute>
            <custom-attribute attribute-id="enableslotat4">true</custom-attribute>
            <custom-attribute attribute-id="enableslotat9">true</custom-attribute>
            <custom-attribute attribute-id="showInMenu">true</custom-attribute>
            <custom-attribute attribute-id="showShadeSelector">false</custom-attribute>
            <custom-attribute attribute-id="showSubCollectionsAsTabs">false</custom-attribute>
        </custom-attributes>
    </category>

// cut for brevity - the above category nodes are the same format as the rest of the XML document.

【问题讨论】:

命名空间。请注意,虽然在文档中,您可以在前面说 xmlns="..." 表示所有未修饰的名称都在该命名空间中,您不能在 xpath 中这样做 - 在xpath,它在概念上与任何文档分开,您必须准确说出哪些名称空间名称在其中,通常使用XmlNamespaceManager 【参考方案1】:

由于您的 XML 使用显式命名空间,看来您必须在 SelectNodes 方法中指定它:

 XmlNamespaceManager nsmgr = new XmlNamespaceManager(doc.NameTable);
 nsmgr.AddNamespace("cc", "http://www.site.com/catalog/2012-10-31");
 XmlNodeList nodelist = doc.SelectNodes("/cc:catalog/cc:category", nsmgr);

【讨论】:

以上是关于无论特定 Id 如何,如何使用 XPath 选择类别 XML 节点?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 XPath 获取特定表格单元格中的值

JQuery 选择器:如何选择具有特定类 * 和 * id 的项目

使用 XPath 选择具有具体类的第一个节点

如何使用 XPath 选择任意深度的子元素?

如何使用 vbscript 删除 XML 文件中的特定节点

如何使用多个 XPath 查询在 c# 中选择单个 XML 节点