↧
Answer by AutomatedTester for When do I need to use JSON and XML?
I tend to use JSON when working in web applications because it is a lot smaller than XML because it doesnt require the bloat that the nodes create. With the Native support for JSON being added to...
View ArticleAnswer by YOU for When do I need to use JSON and XML?
Take a look at Why JSON isn’t just for JavaScript
View ArticleAnswer by Amarghosh for When do I need to use JSON and XML?
You store data into mysql (or any database in general) at the server side. json and xml are the formats used to send data from client to the server and back.
View ArticleAnswer by phoebus for When do I need to use JSON and XML?
You probably are storing the information in SQL at the back end.The purpose of JSON/XML in this context is to provide data to client-side Javascript through a webservice, which at the back end is...
View ArticleAnswer by Amber for When do I need to use JSON and XML?
JSON and XML are both formats typically used for conveying information, in addition to storing it (though XML documents are often used for storing information as well, and JSON could theoretically...
View ArticleAnswer by Zorglub for When do I need to use JSON and XML?
Basically, both JSon and XML are used to store structured data. If your AJAX call only gets a single value (like "number of votes"), you could just fetch it and not use JSON or XML at all. But as soon...
View ArticleWhen do I need to use JSON and XML?
I know there are a lot of sources which explain this, but they just talk about storing key/value pairs in an array or in an object.I can't understand why or when should I do this, although I always use...
View Article
More Pages to Explore .....