1.JSON 打印json
console.log(JSON.stringify(data, null, 4));spa
2.JSON 格式判斷prototype
var isjson = typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length;blog
3.JSON 轉義string
(當咱們在多行文本框中對JSON數據進行操做以後,數據會進行轉義,會帶有 \\|\"|\n|\r|\t 這一類字符)console
var toObj = JSON.parse(str.replace(/(\\|\"|\n|\r|\t)/g, "\$1"));object
4.JSON 內部數據是否正確date
try-catch拋異常:im
if(typeof(vm.tobeupdatemenuVal) == "object"){call
var dataJSON = {
"content": vm.tobeupdatemenuVal
};
}else{
console.log(121)
try{
var toObjVal = JSON.parse(vm.tobeupdatemenuVal.replace(/(\\|\"|\n|\r|\t)/g, "\$1"));
}catch(e){
layer.msg("數據格式錯誤!")
return;
}
var dataJSON = {
"content": toObjVal
};
}