Html Agility Pack 抓取搜狗微信搜索时部分内容无法获取

发布于 2022-09-04 13:33:12 字数 1500 浏览 18 评论 0

例如抓主页中的阅读量 class=s1span,无法获取此节点,而s2的则无内容。
请问这是什么问题呢?如何解决?谢谢。

HtmlWeb web = new HtmlWeb();
            HtmlDocument doc = web.Load("http://weixin.sogou.com");
            HtmlNode node = doc.GetElementbyId("pc_0_0");//输出node中找不到span_s1节点
            StreamWriter sw = File.CreateText("log.txt");
            foreach (HtmlNode child in node.ChildNodes)
            {
                if (child.Name != "li")
                    continue;
                HtmlNode hn = HtmlNode.CreateNode(child.OuterHtml);
                
                Write(sw, String.Format("公众号:{0}", hn.SelectSingleNode("//*[@class=\"account\"]").InnerText));
                Write(sw, String.Format("地址:{0}", hn.SelectSingleNode("//*[@class=\"account\"]").Attributes["href"].Value));
                Write(sw, String.Format("标题:{0}", hn.SelectSingleNode("//h3").InnerText));
                Write(sw, String.Format("地址:{0}", hn.SelectSingleNode("//h3").SelectSingleNode("//a").Attributes["href"].Value));
                Write(sw, String.Format("缩略图:{0}", hn.SelectSingleNode("//*[@class=\"img-box\"]").SelectSingleNode("//img").Attributes["src"].Value));
                //Write(sw, String.Format("阅读量:{0}", hn.SelectSingleNode("//*[@class=\"s1\"]").InnerText)); //节点找不到
                Write(sw, String.Format("简介:{0}", hn.SelectSingleNode("//*[@class=\"txt-info\"]").InnerText));
            }
            sw.Close();
            Console.ReadLine();

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文