以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 关于trycatch的问题 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=190640) |
-- 作者:benben325 -- 发布时间:2024/2/27 9:50:00 -- 关于trycatch的问题 我做了个函数,用来测试是否能联通某个后台,如下所示: |
-- 作者:有点蓝 -- 发布时间:2024/2/27 9:56:00 -- http://www.foxtable.com/mobilehelp/topics/0294.htm Dim api As String = Args(0) Dim url As String = "http://192.168.5.210:32177/" & api Dim hp As New HttpClient(url) hp.SkipError = True hp.Timeout = 1 Dim s As String = hp.GetData() if hc.StatusCode = 200 andalso s > ""then Return 1 Else Return 0 End If |