我已经尝试过,但出现错误,您知道为什么吗?它给了我一个错误 var Webget = new HtmlWeb(); var doc = Webget.Load(earlyLink); var ourNodes = doc.DocumentNode.SelectNodes(("//p[@class='product_note']")); foreach (var node in ourNodes) { Console.WriteLine(node.GetDirectInnerText()); }```This is the Error未处理的异常。System.Net.WebException:连接被拒绝 连接被拒绝
1 回答
慕森王
TA贡献1777条经验 获得超3个赞
这只是您上一个问题的解决方案的一个变体。
查找所需节点的 XPath 是:
"//p[@class='product_note']"
然后获取内容使用:
node.GetDirectInnerText()
如果您经常这样做,那么您确实需要研究 XPath 和 HtmlAgilityPack 文档。
- 1 回答
- 0 关注
- 73 浏览
添加回答
举报
0/150
提交
取消