I can't seem to find a definitive answer on this -- what does the p in JSONP stand for?. The candidates I've found so far are padding and prints. Anyone know where the JSONP name came from?
| ||||
|
feedback
|
|
Padding.
Hope that helped. Google wins! | |||
|
feedback
|
|
From wikipedia, it stands for "padding" (or with padding). | |||
|
feedback
|
|
Umm ... you've seen the wikipedia page, and you mistrust its accuracy? This standards site seems to confirm the "with padding". | |||
|
feedback
|
|
Stone, What I know, it stands for 'Padding'. There is a explaination about it on Wikipedia: JsonP What it does? It gives you the possibility to make a CROSS-DOMAIN request and get JSON data returned. Normally via the HTML script tag you call for another JavaScript. But JsonP provide you a callback function and you can return noraml Json response. Example: You create a script tag:
In this script the GiveCarResponse is the callback function on the other Domain. Invoking this function will result in a Json response. In example:
Does this make sense? | |||
|
feedback
|
|
It basically means to add a calling function around JSON. AJAX can be called from your own server only and is not a cross domain. So to load data from different servers at client side, you make a JSONP request, basically you load a normal javascript file from other server just like you include a normal javascript file. Bust as JSON is not a valid javascript file, JSON is wrapped up in a function call to make it valid js file. the wrapped up function (already in your code) then extracts that data and show it on your page. | |||
|
feedback
|