- JavaScript and JSON Essentials
- Sai Srinivas Sriparasa
- 565字
- 2021-07-23 15:52:44
Chapter 2. Getting Started with JSON
JSON or JavaScript Object Notation is a very popular data interchange format. It was developed by Douglas Crockford. JSON is text-based, lightweight, and a human-readable format for data exchange between clients and servers. JSON is derived from JavaScript and bears a close resemblance to JavaScript objects, but it is not dependent on JavaScript. JSON is language-independent, and support for the JSON data format is available in all the popular languages, some of which are C#, PHP, Java, C++, Python, and Ruby.
Note
JSON is a format and not a language.
JSON can be used in web applications for data transfer. Prior to JSON, XML was considered to be the chosen data interchange format. XML parsing required an XML DOM implementation on the client side that would ingest the XML response, and then XPath was used to query the response in order to access and retrieve the data. That made life tedious, as querying for data had to be performed at two levels: first on the server side where the data was being queried from a database, and the second time was on the client side using XPath. JSON does not need any specific implementations; the JavaScript engine in the browser handles JSON parsing.
XML messages often tend to be heavy and verbose, and take up a lot of bandwidth while sending the data over a network connection. Once the XML message is retrieved, it has to be loaded into memory to parse it; let us take a look at a students
data feed in XML and JSON.
The following is an example in XML:

Let us take a look at the example in JSON:

As we notice, the size of the XML message is bigger when compared to its JSON counterpart, and this is just for two records. A real-time feed will begin with a few thousands and go upwards. Another point to note is the amount of data that has to be generated by the server and then transmitted over the Internet is already big, and XML, as it is verbose, makes it bigger. Given that we are in the age of mobile devices where smart phones and tablets are getting more and more popular by the day, transmitting such large volumes of data on a slower network causes slow page loads, hang ups, and poor user experience, thus driving the users away from the site. JSON has come about to be the preferred Internet data interchange format, to avoid the issues mentioned earlier.
Since JSON is used to transmit serialized data over the Internet, we will need to make a note of its MIME type. A MIME (Multipurpose Internet Mail Extensions) type is an Internet media type, which is a two-part identifier for content that is being transferred over the Internet. The MIME types are passed through the HTTP headers of an HTTP Request and an HTTP Response. The MIME type is the communication of content type between the server and the browser. In general, a MIME type will have two or more parts that give the browser information about the type of data that is being sent either in the HTTP Request or in the HTTP Response. The MIME type for JSON data is application/json
. If the MIME type headers are not sent across the browser, it treats the incoming JSON as plain text.
- Puppet 4 Essentials(Second Edition)
- Getting Started with Citrix XenApp? 7.6
- .NET之美:.NET關鍵技術深入解析
- JSP網(wǎng)絡編程(學習筆記)
- Apache ZooKeeper Essentials
- Oracle Exadata性能優(yōu)化
- Effective C#:改善C#代碼的50個有效方法(原書第3版)
- EPLAN實戰(zhàn)設計
- Building Minecraft Server Modifications
- 用戶體驗增長:數(shù)字化·智能化·綠色化
- HTML5與CSS3基礎教程(第8版)
- Creating Stunning Dashboards with QlikView
- 深入實踐Kotlin元編程
- GitHub入門與實踐
- Java 從入門到項目實踐(超值版)