打印json对象的内容及JSON.stringify函数应用
更新时间:2013年03月29日 15:26:45 作者:
json对象的内容在调试的时候用的到通过JSON.stringify函数,可以转换json对象为字符串,接下来为大家详细介绍下,感兴趣的朋友可以参考下哈
在调试的时候,经常需要知道json对象的内容,通过JSON.stringify函数,可以转换json对象为字符串。
$(document).ready(function() {
$.ajax({
type: "post",
dataType: "json",
url: '/centermanage/modules/admin/index.php?task=getequipmentinfo',
data: "&id=" + id,
error: function(msg){ <PRE class=javascript name="code"> alert(JSON.stringify(msg));
},
success: function(msg) {
alert(JSON.stringify(msg));
})
})</PRE><P></P>
<PRE></PRE>
<BR>
<P></P>
复制代码 代码如下:
$(document).ready(function() {
$.ajax({
type: "post",
dataType: "json",
url: '/centermanage/modules/admin/index.php?task=getequipmentinfo',
data: "&id=" + id,
error: function(msg){ <PRE class=javascript name="code"> alert(JSON.stringify(msg));
},
success: function(msg) {
alert(JSON.stringify(msg));
})
})</PRE><P></P>
<PRE></PRE>
<BR>
<P></P>
相关文章
详解Java中String JSONObject JSONArray List<实体类>转换
这篇文章主要介绍了详解String JSONObject JSONArray List<实体类>转换,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-11-11
最新评论