我正在尝试解析一个包含许多表的 PHP 页面。现在,当我尝试选择这些表时,集合返回 null?
Dim web As New HtmlAgilityPack.HtmlWeb()
Dim htmlDoc As HtmlAgilityPack.HtmlDocument = web.Load("URL")
Dim html As String
Dim tabletag As HtmlNodeCollection = htmlDoc.DocumentNode.SelectNodes("//table")
Dim tableNode As HtmlNode = htmlDoc.DocumentNode.SelectSingleNode("//table[@summary='List of services']")
If Not tabletag Is Nothing Then
html = tableNode.InnerText
End If
这个页面肯定有一些表格,只是不明白为什么它返回null?