|
- 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 stated in the MDN, some JavaScript is not JSON, and some JSON is not JavaScript An example of where this is used is web services responses
- How to use if statement inside JSON? - Stack Overflow
How to use if statement inside JSON? Asked 12 years, 4 months ago Modified 3 years, 4 months ago Viewed 177k times
- 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 Many parsers and minifiers support JSON comments as well, so just make sure your parser supports them
- What is the right JSON date format? - Stack Overflow
If you have control over the generated json, for example, you provide data to other systems in json format, choosing 8601 as the date interchange format is a good choice
- 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 See this list of special character used in JSON : \b Backspace (ascii code 08) \f Form feed (ascii code 0C) \n New line \r Carriage return \t Tab \" Double quote \\ Backslash character However, even if it is
- How to exclude property from Json Serialization - Stack Overflow
I have a DTO class which I Serialize Json Serialize(MyClass) How can I exclude a public property of it? (It has to be public, as I use it in my code somewhere else)
- rest - How do I POST JSON data with cURL? - Stack Overflow
I use Ubuntu and installed cURL on it I want to test my Spring REST application with cURL I wrote my POST code at the Java side However, I want to test it with cURL I am trying to post a JSON d
- json - Explanation of JSONB introduced by PostgreSQL - Stack Overflow
If you only work with the JSON representation in your application, PostgreSQL is only used to store retrieve this representation, you should use json If you do a lot of operations on the JSON value in PostgreSQL, or use indexing on some JSON field, you should use jsonb
|
|
|