我想从网站检索数据(例如http://intimes.eu.pn/getsurvey.php) 我该怎么开始?指南请
答案 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)
首先,我建议您阅读“用户指南”的以下章节
在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?