What are the differences between JSON and JSONP?

后端 未结 8 2008
感情败类
感情败类 2020-11-22 03:53

Format wise, file type wise and practical use wise?

8条回答
  •  生来不讨喜
    2020-11-22 04:20

    JSONP is a simple way to overcome browser restrictions when sending JSON responses from different domains from the client.

    But the practical implementation of the approach involves subtle differences that are often not explained clearly.

    Here is a simple tutorial that shows JSON and JSONP side by side.

    All the code is freely available at Github and a live version can be found at http://json-jsonp-tutorial.craic.com

提交回复
热议问题