从服务器检索数据

时间:2013-07-23 08:40:15

标签: json livecode

我想从网站检索数据(例如http://intimes.eu.pn/getsurvey.php) 我该怎么开始?指南请

2 个答案:

答案 0 :(得分:2)

以下是如何入门:

//PLACE THE URL FROM WHICH YOU WILL RETRIEVE DATA INTO ANY VARIABLE (tURL)
put "http://intimes.eu.pn/getsurvey.php" into tURL

// RETRIEVE DATA FROM SERVER. PLACE DATA INTO VARIABLE tDATA
put url tURL into tData

// DO SOMETHING WITH tData

要在Livecode中使用JSON,您必须使用解析JSON的库。调查这是一个开始。 http://revonline2.runrev.com/stack/82/LibJson-1-0b

答案 1 :(得分:1)

首先,我建议您阅读“用户指南”的以下章节

  • 11.4使用网址
  • 11.5上传和下载文件
  • 11.6其他互联网命令

在MSWindows上可用,例如在C:\ Program Files \ RunRev \ LiveCode社区6.1 \ Documentation \ pdf

你可能需要 https://github.com/montegoulding/mergJSON

相关 Square brackets with mergJSON in LiveCode - what am I doing wrong?