代码之家  ›  专栏  ›  技术社区  ›  StackOverthrow

XPathNavigator可以从测试输入中进行选择,但不能从实际输入中进行选择

  •  1
  • StackOverthrow  · 技术社区  · 6 年前

    serviceListXml 到控制台,如下代码所示:

    <?xml version="1.0" encoding="utf-8"?>
    <service xml:base="https://fnord/live/api/v1" xmlns="http://www.w3.org/2007/app" xmlns:atom="http://www.w3.org/2005/Atom">
      <workspace>
        <atom:title type="text">Service List</atom:title>
        <collection href="Erp.BO.ABCCodeSvc">
          <atom:title type="text">Erp.BO.ABCCodeSvc</atom:title>
        </collection>
        <collection href="Erp.BO.AccountBudgetSvc">
          <atom:title type="text">Erp.BO.AccountBudgetSvc</atom:title>
        </collection>
        <collection href="Erp.BO.ACTTypeSvc">
          <atom:title type="text">Erp.BO.ACTTypeSvc</atom:title>
        </collection>
        <!-- hundreds more collection elements -->
      </workspace>
    </service>
    

    这是我的密码:

    var serviceListXml = client.GetStringAsync(serviceListUrl).GetAwaiter().GetResult();
    //serviceListXml = "<foo><bar><collection/><collection/><collection/></bar></foo>";
    Console.WriteLine(serviceListXml);
    var doc = new XPathDocument(new StringReader(serviceListXml));
    var nav = doc.CreateNavigator();
    var foo = nav.Select("//collection");
    Console.WriteLine("selected " + foo.Count + " elements");
    

    这将选择0个元素。为什么?

    服务列表XML 对于测试字符串,它按预期查找3个元素。我想在我真正的XML上可能有一个BOM表,所以我尝试使用 serviceListXml.Substring(serviceListXml.IndexOf("<")) 但没什么区别。

    1 回复  |  直到 6 年前
        1
  •  1
  •   Kirill Polishchuk    6 年前

    这是因为在您的原始XML集合中 http://www.w3.org/2007/app 命名空间,这是该XML的默认命名空间。能够选择 collection

    方案1: 将命名空间传递到XPathDocument中,例如:

    var ns = new XmlNamespaceManager(nav.NameTable);
    ns.AddNamespace("ns", "http://www.w3.org/2007/app");
    var foo = nav.Select("//ns:collection", ns);
    

    方案2: var foo = nav.Select("//*[local-name() = 'collection']");