What is JSON and why would I use it?

前端 未结 17 1875
说谎
说谎 2020-11-21 15:54

I\'ve looked on wikipedia and Googled it and read the official documentation, but I still haven\'t got to the point where I really understand what JSON is, and why I\'d use

17条回答
  •  遇见更好的自我
    2020-11-21 16:32

    JSON(Javascript object notation) is a light weight data format for data exchange/transfer. Its in key value pair as the JavaScript is. For REST API its widely used for data transfer from server to client. Nowadays many of the social media sites are using this. Although I don't see this as robust as XML with respect of data types. XML has very rich datatypes and XSD. JSON is bit lacking in this.

    For same amount of string data JSON will be lighter compare to XML as XML has all that opening and closing tags, etc...

提交回复
热议问题