参考:
http://m.blog.csdn.net/zhengxiangwen/article/details/68927330
http://www.zyall.com/format_json.html
一,格式化显示
1,必须在pre标签中
<pre style="width:100%;height:100%" id="data-test"></pre>
2,将数据进行JSON格式化
$.ajax({
type: "POST",
dataType:"jsonp",
jsonp: "callback",
url:env+'/mapi',
data: d + "&_at="+ _at,
success: function(data){
data = formatJson(data);
$("#data-test").html(data);
}
});