/*
* 格式化
* */
var pretty_format = function (obj, indent) {
if (obj === null) return 'null';
if (obj === undefined) return 'undefined';
if (typeof obj === 'string') return '"' + obj + '"';
if (typeof obj !== 'object') return String(obj); if (indent == undefined) indent = ''; var result = '{\n';
for (var key in obj) {
result += indent + ' ' + key + ' = ';
result += format_pretty(obj[key], indent + ' ') + '\n';
}
return result + indent + '}';
}
相关文章
- 07-26JS Date对象及对象方法
- 07-26js-5:常用的内置对象和使用方法
- 07-26js数组Array对象方法
- 07-26js如何判断一个对象是不是Array? 三种方法总有一种可以帮上忙
- 07-26js sort方法根据数组中对象的某一个属性值进行排序
- 07-26js sort方法根据数组中对象的某一个属性值进行排序
- 07-26JS 中 对数组对象的方法 ----splice (比较细比较多。容易记)
- 07-26js 对象取值的高级方法
- 07-26toJSON() 方法,将 Date 对象转换为字符串,并格式化为 JSON 数据格式。
- 07-26JS中JSON.stringify()方法,将js对象转换成字符串,传入服务器