判断字符串是否为JSON
Posted 霜末之冬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断字符串是否为JSON相关的知识,希望对你有一定的参考价值。
function isJSON(str) { if (typeof str == ‘string‘) { try { var obj=JSON.parse(str); if(typeof obj == ‘object‘ && obj ){ return true; }else{ return false; } } catch(e) { console.log(‘error:‘+str+‘!!!‘+e); return false; } } console.log(‘It is not a string!‘) }
以上是关于判断字符串是否为JSON的主要内容,如果未能解决你的问题,请参考以下文章