如何从jquery脚本获取jSON响应到变量中

如何从jquery脚本获取jSON响应到变量中,第1张

如何从jquery脚本获取jSON响应到变量中

这是脚本,使用上面的建议进行了重写,并对无缓存方法进行了更改。

<?php// Simpler way of making sure all no-cache headers get sent// and understood by all browsers, including IE.session_cache_limiter('nocache');header('Expires: ' . gmdate('r', 0));header('Content-type: application/json');// set to return response=error$arr = array ('response'=>'error','comment'=>'test comment here');echo json_enpre($arr);?>//the script above returns this:{"response":"error","comment":"test comment here"}<script type="text/javascript">$.ajax({    type: "POST",    url: "process.php",    data: dataString,    dataType: "json",    success: function (data) {        if (data.response == 'captcha') { alert('captcha');        } else if (data.response == 'success') { alert('success');        } else { alert('sorry there was an error');        }    }}); // Semi-colons after all declarations, IE is picky on these things.</script>

这里的主要问题是您在返回的JSON中有一个错字(“ resonse”而不是“
response”。这意味着您在Javascript代码中查找了错误的属性。一种在将来捕获这些问题的方法)是

console.log
的价值
data
,并确保你正在寻找的属性是存在的。

学习如何使用Chrome调试器工具(或Firefox / Safari / Opera /等中的类似工具)也将非常宝贵。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5089174.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存