有什么区别:
Msxml2.DOMDocument
Msxml2.XMLHTTP
? 当然,另一个问题是哪一个最适合我的目的,如下所述?
上下文是这样的——我有很多调用来检索网页的代码。我正在为这项任务寻找最有效的对象。例如,像这样:
Dim oXmlHttp : Set oXmlHttp = CreateObject("MSXML2.XMLHTTP")
oXmlHttp.Open "GET", sUri, False
oXmlHttp.Send
If Err Then
getWebPage = "ERROR - could not get the source text of the webpage."
Exit Function
End If
sResponse = oXmlHttp.responseBody
如果我使用以下方法创建对象,这似乎工作方式相同:
Dim oXmlHttp : Set oXmlHttp = CreateObject("MSXML2.XMLHTTP")
任何人都可以解释或指出我的参考,清楚地概述了每个人的差异(和预期用途)吗?