Format wise, file type wise and practical use wise?
|
|
JSONP is JSON with padding, that is, you put a string at the beginning and a pair of parenthesis around it. For example:
The result is that you can load the json as a script file. If you previously set up a function called func, then that function will be called with one argument, which is the json data, when the script file is done loading. This is usually used to allow for cross-site AJAX with JSON data. If you know that example.com is serving json files that look like the JSONP example given above, then you can use code like this to retrieve it, even if you are not on the example.com domain:
|
||||
|
|
|
JSONP allows you to specify a callback function that is passed your JSON object. This allows you to bypass the same origin policy and load JSON from an external server into the javascript on your webpage. |
||||
|
|
|
JSONP is essentially, JSON with extra code, like a function call wrapped around the data. It allows the data to be acted on during parsing. |
|||
|
|
|
http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/ It sounds like JSONP is a method for grabbing JSON from a different domain. It's not a separate language. |
|||
|
“JSONP is JSON with extra code” would be too easy for the real world. No, you gotta have little discrepancies. What’s the fun in programming if everything just works? Turns out JSON is not a subset of JavaScript. If all you do is take a JSON object and wrap it in a function call, one day you will be bitten by strange syntax errors, like I was today. |
||||
|
|