XDocument.Element 在解析 xml 字符串时返回 null



我有这个xml字符串:

<a:feed xmlns:a="http://www.w3.org/2005/Atom" 
        xmlns:os="http://a9.com/-/spec/opensearch/1.1/"
        xmlns="http://schemas.zune.net/catalog/apps/2008/02">
    <a:link rel="self" type="application/atom+xml" href="/docs" />
    <a:updated>2014-02-12</a:updated>
    <a:title type="text">Chickens</a:title>
    <a:content type="html">eat 'em all</a:content>
    <sortTitle>Chickens</sortTitle>
    ... other stuffs
    <offers>
        <offer>
            <offerId>8977a259e5a3</offerId>
            ... other stuffs
            <price>0</price>
            ... other stuffs
        </offer>
    </offers>
    ... other stuffs
</a:feed>

并希望获得<price>的值,但在我的代码中:

XDocument doc = XDocument.Parse(xmlString);
var a = doc.Element("a");
var offers = a.Element("offers");
foreach (var offer in offers.Descendants())
{
   var price = offer.Element("price");
   var value = price.Value;
}

doc.Element("a");返回 null。我尝试删除该行offers也是空的。我的代码中有什么问题以及如何获取price的值?谢谢

这是获取价格的正确方法:

var xdoc = XDocument.Parse(xmlString);
XNamespace ns = xdoc.Root.GetDefaultNamespace();
var pricres = from o in xdoc.Root.Elements(ns + "offers").Elements(ns + "offer")
              select (int)o.Element(ns + "price");

请记住,您的文档具有默认命名空间,a也是命名空间。

以某种方式获取命名空间,例如

XNameSpace a = doc.Root.GetDefaultNamespace();

或者,可能更好:

XNameSpace a = doc.Root.GetNamespaceOfPrefix("a");

然后在查询中使用它:

// to get <a:feed>
XElement f = doc.Element(a + "feed");

您也可以从文本字符串设置命名空间,但随后避免使用 var

var xDoc = XDocument.Load(filename);
XNamespace ns = "http://schemas.zune.net/catalog/apps/2008/02";
var prices = xDoc
                .Descendants(ns + "offer")
                .Select(o => (decimal)o.Element(ns + "price"))
                .ToList();

a是一个命名空间。要获取源元素,请尝试以下操作:

XDocument doc = XDocument.Parse(xmlString);
XNamespace a = "http://www.w3.org/2005/Atom";
var feed = doc.Element(a + "feed");

最新更新