como validar un json code example
Example 1: como validar un json
let textoJSON = '{ "delegacionId": "0091" <<<ERROR>>> "places": ["Africa", "America", "Asia", "Australia"] }',
objeto;
try {
objeto = JSON.parse(textoJSON);
console.log('Sintaxis Correcta');
}
catch (error) {
if(error instanceof SyntaxError) {
let mensaje = error.message;
console.log('ERROR EN LA SINTAXIS:', mensaje);
} else {
throw error;
}
}
Example 2: como validar un json
let textoJSON = '{ "delegacionId": "0091" , "feha": "2021-06-10", "intervalo": 9 }',
objeto;
try {
objeto = JSON.parse(textoJSON);
console.log('Sintaxis Correcta');
}
catch (error) {
if(error instanceof SyntaxError) {
let mensaje = error.message;
console.log('ERROR EN LA SINTAXIS:', mensaje);
} else {
throw error;
}
}