jQuery中的getJSON方法请求的接口有错误时的处理技巧
发布时间:2021-11-24 14:28:03 所属栏目:教程 来源:互联网
导读:在用jQuery中的getJSON方法时,通常会碰到请求的接口有错误的情况发生,这时我们可以用下面的方法来做处理,代码如下: script type=text/javascript function GetDatas(url) { try { $.ajaxSetup({ error: function (x, e) { $(#content).html(暂无具体内容
在用jQuery中的getJSON方法时,通常会碰到请求的接口有错误的情况发生,这时我们可以用下面的方法来做处理,代码如下: <script type="text/javascript"> function GetDatas(url) { try { $.ajaxSetup({ error: function (x, e) { $("#content").html("暂无具体内容!"); return false; } }); $.getJSON(url, function (data) { if (data != null) { $(".TitleStyle").html(data["root"][0]["data"][0]["Title"]); var date = data["root"][0]["data"][0]["Date"]; if (date.length == 8) { $("#strDate").html(date.substring(0, 4) + "-" + date.substring(4, 6) + "-" + date.substring(6, 8)); } $("#strAuthor").html(data["root"][0]["data"][0]["SecuName"]); $("#content").html(data["root"][0]["data"][0]["Content"]); } else { $("#content").html("暂无具体内容!"); } }); } catch (ex) { $("#content").html("暂无具体内容!"); } } </script> (编辑:我爱故事小小网_铜陵站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |