Livecode URL关键字

时间:2016-08-22 12:00:51

标签: livecode

我有这段代码使用URL关键字访问网址内容,但我总是收到错误:An error occured: error。我错过了什么?

on _common_parse_json pUrl

   put "http://www.google.com" into pUrl
   put URL pUrl into tResult   
   put the result into tError

   if tError is empty then      
      set the text of field "result" to tResult      
   else      
      set the text of field "result" to "An error occurred:" && tError & ", parsing URL:"&&pUrl      
   end if

end _common_parse_json

P.S我在Windows 8.1中使用Livecode 7.1.4社区版

1 个答案:

答案 0 :(得分:0)

咄!发生该问题的原因是HTTP proxy不为空。清除它会使一切正常。

我不知道为什么它不是空的,这是一个全新的安装。

我碰到了别人的话题,我忘记了与此问题有关的链接。

希望这有助于其他人。

enter image description here