S
shmily0616
Unregistered / Unconfirmed
GUEST, unregistred user!
xmlHttp :=CreateOleObject('Msxml2.XMLHTTP');
xmlHttp.open('Get',url,False);
xmlHttp.Send();
下面想读取返回的responsexml,不知怎么写了,类型老是不匹配
是把xmlhttp.responsexml赋到什么类型里还是直接xmlhttp.responsexml.什么来读取返回的xml文档?
if xmlHttp.ReadyState=4 then
:=xmlhttp.responsexml.getElementsByTagName("AAA")[0].getAttribute("VVV");
直接这么写可以不?
getElementsByTagName是需要放哪个单元哪个控件?总是undeclared
还有,都需要引用哪些单元放哪些组件?
xmlHttp.open('Get',url,False);
xmlHttp.Send();
下面想读取返回的responsexml,不知怎么写了,类型老是不匹配
是把xmlhttp.responsexml赋到什么类型里还是直接xmlhttp.responsexml.什么来读取返回的xml文档?
if xmlHttp.ReadyState=4 then
:=xmlhttp.responsexml.getElementsByTagName("AAA")[0].getAttribute("VVV");
直接这么写可以不?
getElementsByTagName是需要放哪个单元哪个控件?总是undeclared
还有,都需要引用哪些单元放哪些组件?