我的json代码:输入
{"responseCode":"200","responseText":"ID: 2ce934c860f48b02fb755178f8ac0a2"}
如何在zoho创建者中进行json解码 ==>这是正确的 ?
responseCode=jsondata.getJSON("responseCode");
responseText=jsondata.getJSON("responseText");
SMS_ID=responseText.getJSON("ID");
答案 0 :(得分:2)
这几乎是正确的。请注意,"ID: 2ce934c860f48b02fb755178f8ac0a2"
只是一个字符串,而不是JSON元素。
尝试:
responseText=jsondata.getJSON("responseText");
SMS_ID = responseText.remove("ID: ");