从 XDocument 中获取后代

发布于 2024-10-01 01:17:03 字数 426 浏览 1 评论 0原文

我正在尝试从 此网站标签>。它可以很好地加载到 XDocument 中,但我似乎无法获取任何 元素。这是我的代码:

XDocument netflixPage = new XDocument();
netflixPage = XDocument.Load("http://odata.netflix.com/Catalog/Titles");

foreach (XElement xe in netflixPage.Descendants("entry").ToList())
{
    string movieInfo = xe.Value;
}

I am trying to grab all the <entry> tags from this site. It will load just fine into an XDocument but I cannot seem to grab any of the <entry> elements. Here is the code I have:

XDocument netflixPage = new XDocument();
netflixPage = XDocument.Load("http://odata.netflix.com/Catalog/Titles");

foreach (XElement xe in netflixPage.Descendants("entry").ToList())
{
    string movieInfo = xe.Value;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔日梦未散 2024-10-08 01:17:03

您的代码尝试检索   命名空间中的 entry 元素,但文档在 http://www 中包含 entry 元素.w3.org/2005/Atom 命名空间:

XNamespace atom = "http://www.w3.org/2005/Atom";

XDocument doc = XDocument.Load("http://odata.netflix.com/Catalog/Titles");

foreach (XElement xe in doc.Descendants(atom + "entry"))
{
    string movieInfo = (string)xe;
}

Your code attempts to retrieve entry elements in the   namespace, but the document contains entry elements in the http://www.w3.org/2005/Atom namespace:

XNamespace atom = "http://www.w3.org/2005/Atom";

XDocument doc = XDocument.Load("http://odata.netflix.com/Catalog/Titles");

foreach (XElement xe in doc.Descendants(atom + "entry"))
{
    string movieInfo = (string)xe;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文