加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

vbscript/vb6 中实现异步请求

发布时间:2020-12-16 23:10:11 所属栏目:大数据 来源:网络整理
导读:'測試的需要,查了不少資料,有兩种方法,綜合如下 ' Dim strUrl: strUrl="http://localhost:7001/in/issueQry.do" Dim strDat: strDat="uniQueryCode=1670790000005action=status" Dim xmlhttp Call ajaxme(strUrl) function ajaxme(url) Set xmlhttp=Nothi

'測試的需要,查了不少資料,有兩种方法,綜合如下

'
Dim strUrl: strUrl="http://localhost:7001/in/issueQry.do"
Dim strDat: strDat="uniQueryCode=1670790000005&action=status"
Dim xmlhttp

Call ajaxme(strUrl)


function ajaxme(url)
Set xmlhttp=Nothing
On Error Resume Next
Set xmlhttp = new XMLHttpRequest 'FF
if (xmlhttp.overrideMimeType) then
'xmlhttp.overrideMimeType("text/xml")
end if
Err.clear
On Error Goto 0

if(xmlhttp Is Nothing) then '// IE
Set xmlhttp = CreateObject("Msxml2.XMLHTTP")
if err.number<>0 then
Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
end if
end if
if (xmlhttp Is Nothing) then
call msgbox("Giving up,Cannot create an XMLHTTP instance.")
exit function
end if

'用對象是一種方法
Dim obj
'set obj=new oCls
'xmlhttp.onreadystatechange = obj

'用getRef()是另一種方法
xmlhttp.onreadystatechange = GetRef("xmlhttp_onreadystatechange")

'Call xmlhttp.open("POST",url & "?" & strDat,true)
Call xmlhttp.open("POST",url,true)
Call xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded")
Call xmlhttp.send(strDat)

Call msgbox("Wait for response.")
end function

function xmlhttp_onreadystatechange ()
if (xmlhttp.readyState=4) then ' 4 = "complete"
if (xmlhttp.status=200) then ' 200 = OK
call msgbox(xmlhttp.responseText)
else
call msgbox(xmlhttp.status & ":" & xmlhttp.statusText & "/"+xmlhttp.responseText)
end if
end if
end function



Class oCls
'關鍵是default
Public default Function Foo()
Call xmlhttp_onreadystatechange
End Function

Private Sub Class_Initialize()
'Do nothing
End Sub

Private Sub Class_Terminate()
'Do nothing
End Sub
End class

'测试需要,查了不少资料,有两种方法,综合一下如下

'
Dim strUrl: strUrl="http://localhost:7001/in/issueQry.do"
Dim strDat: strDat="uniQueryCode=1670790000005&action=status"
Dim xmlhttp

Call ajaxme(strUrl)


function ajaxme(url)
Set xmlhttp=Nothing
On Error Resume Next
Set xmlhttp = new XMLHttpRequest 'FF
if (xmlhttp.overrideMimeType) then
'xmlhttp.overrideMimeType("text/xml")
end if
Err.clear
On Error Goto 0

if(xmlhttp Is Nothing) then '// IE
Set xmlhttp = CreateObject("Msxml2.XMLHTTP")
if err.number<>0 then
Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
end if
end if
if (xmlhttp Is Nothing) then
call msgbox("Giving up,Cannot create an XMLHTTP instance.")
exit function
end if

'用对象是一种方法

Dim obj
'set obj=new oCls
'xmlhttp.onreadystatechange = obj

'用GetRef()是另一种方法

xmlhttp.onreadystatechange = GetRef("xmlhttp_onreadystatechange")

'Call xmlhttp.open("POST",true)
Call xmlhttp.open("POST",true)
Call xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded")
Call xmlhttp.send(strDat)

Call msgbox("Wait for response.")
end function

function xmlhttp_onreadystatechange ()
if (xmlhttp.readyState=4) then ' 4 = "complete"
if (xmlhttp.status=200) then ' 200 = OK
call msgbox(xmlhttp.responseText)
else
call msgbox(xmlhttp.status & ":" & xmlhttp.statusText & "/"+xmlhttp.responseText)
end if
end if
end function

Class oCls Public default Function Foo() '关键是default Call xmlhttp_onreadystatechange End Function Private Sub Class_Initialize() 'Do nothing End Sub Private Sub Class_Terminate() 'Do nothing End Sub End class

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读