我的drupal开发人员给出了一个URL:http://feed.local/feed/services/rest/viewget/test.json 然后我得到了输出(当我从Chrome浏览器浏览时)下面:
[{"nid":"133","node_title":"What is life really all about?"},{"nid":"139","node_title":"What went wrong?"}]
我正在使用sumitk教程,这是如何使用drupal作为基础系统与钛开发iphone应用程序。 我的问题是如何解析上面的钛。可以帮助..... 或者如果任何人帮助我,我怎么能在xcode ........
中使用它答案 0 :(得分:1)
您可以使用Titanium.JSON.parse
答案 1 :(得分:0)
JSON.parse会帮助你,它是Titanium包含的一个功能。确保将其封装在try {} catch(excp){}
中例如:
try
{
var data = JSON.parse('[{"nid":"133","node_title":"What is life really all about?"},{"nid":"139","node_title":"What went wrong?"}]');
}
catch (excp)
{
alert('JSON parse error');
}