About 10,500,000 results
Open links in new tab
  1. Can comments be used in JSON? - Stack Overflow

    Yes. The JSON format has a lot of dead-space between elements and is space-insensitive in those regions, so there's no reason why you can't have single or multi-line comments there. …

  2. What is JSON and what is it used for? - Stack Overflow

    679 JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging. It is based on a subset of JavaScript language (the way objects are built in JavaScript). As …

  3. How to escape special characters in building a JSON string?

    A JSON string must be double-quoted, according to the specs, so you don't need to escape '. If you have to use special character in your JSON string, you can escape it using \ character. …

  4. Upload files and JSON in ASP.NET Core Web API - Stack Overflow

    Dec 29, 2016 · How can I upload a list of files (images) and json data to ASP.NET Core Web API controller using multipart upload? I can successfully receive a list of files, uploaded with …

  5. Which JSON content type do I use? - Stack Overflow

    JSON (JavaScript Object Notation) and JSONP ("JSON with padding") formats seems to be very similar and therefore it might be very confusing which MIME type they should be using.

  6. How do I make a JSON object with multiple arrays?

    The JSON data is an object (basically an associative array). Indexed arrays use square brackets, , while associative arrays use curly braces, . Any of the data within the outermost object can …

  7. JSON left out Infinity and NaN; JSON status in ECMAScript?

    Any idea why JSON left out NaN and +/- Infinity? It puts Javascript in the strange situation where objects that would otherwise be serializable, are not, if they contain NaN or +/- infinity values....

  8. json: cannot unmarshal object into Go value of type

    json: cannot unmarshal object into Go value of type Asked 11 years, 8 months ago Modified 1 year, 4 months ago Viewed 307k times

  9. How to escape double quotes in JSON - Stack Overflow

    Mar 26, 2013 · We put the outer double quotes to make it a valid JSON string javascript takes the result and passes it to the JSON.parse () fn. JSON.parse evaluates the string using escape …

  10. Representing null in JSON - Stack Overflow

    What is the preferred method for returning null values in JSON? Is there a different preference for primitives? For example, if my object on the server has an Integer called …