Html敏捷性问题

发布于 2024-11-28 03:38:59 字数 625 浏览 1 评论 0原文

我正在尝试提取 div 之间的一些数据。

<div class="movie_general"><div class="img"><a href="/Movies.html" title="Watch Movie">

例如,如果我想要我使用的链接“/Movies.html”:

string hrefValue = doc.DocumentNode
            .Descendants("div")
            .Where(x => x.Attributes["class"].Value == "movie_general")
            .Select(x => x.Element("a").Attributes["href"].Value)
            .FirstOrDefault();

             MessageBox.Show(hrefValue);

但我在Where(x => x.Attributes["class"].Value == "movie_general")处得到一个NullReferenceException,

我做错了什么?

i am trying to extract some data between divs.

<div class="movie_general"><div class="img"><a href="/Movies.html" title="Watch Movie">

Fore example if i want the link "/Movies.html" i used:

string hrefValue = doc.DocumentNode
            .Descendants("div")
            .Where(x => x.Attributes["class"].Value == "movie_general")
            .Select(x => x.Element("a").Attributes["href"].Value)
            .FirstOrDefault();

             MessageBox.Show(hrefValue);

but i get a NullReferenceException at Where(x => x.Attributes["class"].Value == "movie_general")

What am i doing wrong?

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

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

发布评论

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

评论(2

贪恋 2024-12-05 03:38:59

发生这种情况是因为 Linq 提供程序必须迭代文档中的所有其他节点以检查它是否与您的搜索匹配。该文档必须至少有一个没有 class 属性的 div。因此,尝试读取不存在的属性的 Value 属性时会发生错误。

将此替换

.Where(x => x.Attributes["class"].Value == "movie_general")
.Select(x => x.Element("a").Attributes["href"].Value)

为此

.Where(x => x.Attributes["class"] != null && x.Attributes["class"].Value == "movie_general")
.Select(x => x.Element("a") != null && x.Element("a").Attributes["href"] != null ? x.Element("a").Attributes["href"].Value : string.Empty)

It happens because the Linq provider must iterate through all other nodes in the document to check if it matches your search. This document must have at least one div which does not have a class attribute. So, the error happens by trying to read the Value property of an attribute which does not exist.

Replace this

.Where(x => x.Attributes["class"].Value == "movie_general")
.Select(x => x.Element("a").Attributes["href"].Value)

with this

.Where(x => x.Attributes["class"] != null && x.Attributes["class"].Value == "movie_general")
.Select(x => x.Element("a") != null && x.Element("a").Attributes["href"] != null ? x.Element("a").Attributes["href"].Value : string.Empty)
安静 2024-12-05 03:38:59

如果您已经知道该类并且 a 标签从属于该类,为什么不直接使用以下命令获取它:

 HtmlDocument doc = new HtmlDocument();
    doc.Load("C:\\temp\\stackhtml.html");
    string link = doc.DocumentNode.SelectSingleNode("//div[@class='movie_general']//a").GetAttributeValue("href", "unkown");
    Console.WriteLine(link);
    Console.ReadLine();

和结果:

在此处输入图像描述

我在您的示例中添加了结束 div 标签,以便我可以抓取它并将其转储到我的 c 驱动器上的文件中:

<div class="movie_general">
   <div class="img">
      <a href="/Movies.html" title="Watch Movie">
    </div>
</div>

If you already know the class and that the a tag is subordinate to that, why not just grab it directly using:

 HtmlDocument doc = new HtmlDocument();
    doc.Load("C:\\temp\\stackhtml.html");
    string link = doc.DocumentNode.SelectSingleNode("//div[@class='movie_general']//a").GetAttributeValue("href", "unkown");
    Console.WriteLine(link);
    Console.ReadLine();

and the result:

enter image description here

I added closing div tags to your example so that I could scrape it and dumped it in a file on my c drive:

<div class="movie_general">
   <div class="img">
      <a href="/Movies.html" title="Watch Movie">
    </div>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文