📌  相关文章
📜  javascript 是 JSON 字符串有效 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:50.837000             🧑  作者: Mango

代码示例3
//extensive check to make sure object is not of string type and not null
function isJson(item) {
    item = typeof item !== "string"
        ? JSON.stringify(item)
        : item;

    try {
        item = JSON.parse(item);
    } catch (e) {
        return false;
    }

    if (typeof item === "object" && item !== null) {
        return true;
    }

    return false;
}