首页 > Web开发 > 详细

JSONP基础知识

时间:2016-05-04 22:44:52      阅读:269      评论:0      收藏:0      [点我收藏+]

When you place an AJAX request, you also pass in a parameter that mentions the name of a callback function.

The code on the server is designed to return back the json response wrapped inside a function code.

 

By wrapping the response JSON in a function call, the same origin policy is bypassed, allowing cross domain data interchange.

Inplementing this requires a little extra effort, At both the frontend and the backend.

 

为了便于客户端使用数据,逐渐形成了一种非正式传输协议,人们把它称作JSONP,该协议的一个要点就是允许用户传递一个callback参数给服务端,然后服务端返回数据时会将这个callback参数作为函数名来包裹住JSON数据,这样客户端就可以随意定制自己的函数来自动处理返回数据了

JSONP基础知识

原文:http://www.cnblogs.com/guojunru/p/5459827.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!