js如何判断一个字符串是否为json格式

js如何判断一个字符串是否为json格式

阅读 48.4k
7 个回答
function isJSON(str) {
    if (typeof str == 'string') {
        try {
            JSON.parse(str);
            return true;
        } catch(e) {
            console.log(e);
            return false;
        }
    }
    console.log('It is not a string!')    
}

以上try/catch的确实不能完全检验一个字符串是JSON格式的字符串,有许多例外:

JSON.parse('123'); // 123
JSON.parse('{}'); // {}
JSON.parse('true'); // true
JSON.parse('"foo"'); // "foo"
JSON.parse('[1, 5, "false"]'); // [1, 5, "false"]
JSON.parse('null'); // null

仔细看看了看比较靠谱的可能是通过正则做判断,但是正则要写的全面才行,下边是一个:

function isJSON (str, pass_object) {
  if (pass_object && isObject(str)) return true;

  if (!isString(str)) return false;

  str = str.replace(/\s/g, '').replace(/\n|\r/, '');

  if (/^\{(.*?)\}$/.test(str))
    return /"(.*?)":(.*?)/g.test(str);

  if (/^\[(.*?)\]$/.test(str)) {
    return str.replace(/^\[/, '')
      .replace(/\]$/, '')
      .replace(/},{/g, '}\n{')
      .split(/\n/)
      .map(function (s) { return isJSON(s); })
      .reduce(function (prev, curr) { return !!curr; });
  }

  return false;
}

这个是github上别人写的一段正则,我也没有深入验证,只是提供一个思路,也可以试试使用这个叫做is-json的库,但是可能也不全面,仅供参考。

JSON.parse();有报错不是,没有就是

想到一个比较简单的方法:

function isJSON(str) {
        if (typeof str == 'string') {
            try {
                var obj=JSON.parse(str);
                if(str.indexOf('{')>-1){
                    return true;
                }else{
                    return false;
                }

            } catch(e) {
                console.log(e);
                return false;
            }
        }
        return false;
}

http://www.cnblogs.com/lanlei...

 isJSON(str) {
    if (typeof str == 'string') {
        try {
            var obj=JSON.parse(str);
            if(typeof obj == 'object' && obj ){
                return true;
            }else{
                return false;
            }
        } catch(e) {
            return false;
        }
    }
 }

参见:https://www.cnblogs.com/lanle...

if (JSON.stringify(value) === '{}') {
    return false
} else {
    try {
        if (Object.prototype.toString.call(JSON.parse(value)) === '[object Object]') {
            return true
        } else {
            return false
        }
    } catch (e) {
        return false
    }

}

var isjsonPre = typeof (ztrack.uid) == "object" && Object.prototype.toString.call(ztrack.uid).toLowerCase() == "[object object]" && !ztrack.uid.length;

其中ztrack.uid就是你要判断的

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏