“JSON a la cuerda” Código de respuesta

convertir el objeto en string javaScript

var obj = {a: "a", b: "b" /*...*/};
var string = JSON.stringify(obj);
// OUTPUT:
// "{'a':'a', 'b':'b'}"
Vbbab

Cambiar JS a JSON

var obj = {name: "Martin", age: 30, country: "United States"};
 
// Converting JS object to JSON string
var json = JSON.stringify(obj);
 
console.log(json);
// Prints: {"name":"Martin","age":30,"country":"United States"} 
"https://www.tutorialrepublic.com/faq/how-to-convert-js-object-to-json-string.php"
MM.Mirzaei.Dev

JavaScript Object a JSON String

var person={"first_name":"Tony","last_name":"Hawk","age":31};
var personJSONString=JSON.stringify(person); 
Grepper

JSON a la cuerda

var sample  = {
	name: "Himansu Jangid",
  	github: "https://github.com/himanshurajora",
  	age: 19
}
var converted = JSON.stringify(sample);
// now the converted variable contains stringified json object in the single line
// ------------
// to keep the json structure 
converted = JSON.stringify(sample, null, '\t');
// now the object will be stringified but the structure will remain same
// output - '{\n\t"name": "Himansu Jangid",\n\t"github": "https://github.com/himanshurajora",\n\t"age": 19\n}'
Himanshu Jangid

JS Cadena a JSON

var obj = JSON.parse("{no:'u',my:'sql'}");//returnes {no:'u',my:'sql'}
If-dev

JSON a la cuerda

JSON.stringify()
Code Cat

Respuestas similares a “JSON a la cuerda”

Preguntas similares a “JSON a la cuerda”

Más respuestas relacionadas con “JSON a la cuerda” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código