如何在zoho中进行json解码

时间:2016-05-04 07:19:20

标签: zoho

我的json代码:输入

{"responseCode":"200","responseText":"ID: 2ce934c860f48b02fb755178f8ac0a2"}

如何在zoho创建者中进行json解码 ==>这是正确的 ?

responseCode=jsondata.getJSON("responseCode");
responseText=jsondata.getJSON("responseText");
SMS_ID=responseText.getJSON("ID");

1 个答案:

答案 0 :(得分:2)

这几乎是正确的。请注意,"ID: 2ce934c860f48b02fb755178f8ac0a2"只是一个字符串,而不是JSON元素。

尝试:

responseText=jsondata.getJSON("responseText");
SMS_ID = responseText.remove("ID: ");