JSON String inside a JSON

前端 未结 3 822
忘了有多久
忘了有多久 2021-01-01 17:04

I want to create a JSON string inside a JSON request. Here is my code,

Fiddle

JS

var x = {
    a: 1,
    b: \'a sample text\         


        
相关标签:
3条回答
  • 2021-01-01 17:17

    Well, this may not be helpful. But, I ran into an issue where the JSON string inside a JSON had no property. I was able to parse the JSON string doing the following:

    //Return from remote php request {'{"firsttest": 0, ""scndTest": 1"}'};
    // How to access 
    let data = Object.Keys(jsonWJsonString)[0];
    let justJSONValue = JSON.parse(data);
    

    this works because there is no object property to reference so an index value can be used; which gives us the JSONString. Hope that helped anyone. Cheers

    0 讨论(0)
  • 2021-01-01 17:32

    There is no problem. It's just your console.log that shows all strings by simply delimiting with ".

    As you say this request object is used in a JSON request, where it will be JSON.stringifyed another time, with the valid result

    {"t":"{\"a\":1,\"b\":\"a sample text\"}","c":2,"r":"some text"}
    
    0 讨论(0)
  • 2021-01-01 17:37

    That's just the way the browser console shows you the value of a string, by wrapping in double quotes for the output. This is perfectly normal and nothing is broken.

    You can test it by transforming your JSON string back to an object and using a property.

    console.log( JSON.parse(request.t).b ); // a sample text
    
    0 讨论(0)
提交回复
热议问题