“JavaScript ist JSON String gültig” Code-Antworten

Wenn JSON VIRETE JS

function IsJsonString(str) {
    try {
        JSON.parse(str);
    } catch (e) {
        return false;
    }
    return true;
}
Joyous Jaguar

JavaScript ist JSON String gültig

function isValidJSONString(str) {
    try {
        JSON.parse(str);
    } catch (e) {
        return false;
    }
    return true;
}
//usage
var personJSONString = '{"first_name":"Tony","last_name":"Hawk","age":31}';
if(isValidJSONString(personJSONString)){
 //cool we are valid, lets parse
 var person= JSON.parse(personJSONString);
}
Grepper

JavaScript ist JSON String gültig

//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;
}
Annoyed Albatross

Ähnliche Antworten wie “JavaScript ist JSON String gültig”

Fragen ähnlich wie “JavaScript ist JSON String gültig”

Weitere verwandte Antworten zu “JavaScript ist JSON String gültig” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen