浅谈JQuery+ajax+jsonp 跨域访问

前端之家收集整理的这篇文章主要介绍了浅谈JQuery+ajax+jsonp 跨域访问前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Jsonp(JSON with Padding)是资料格式 json 的一种“使用模式”,可以让网页从别的网域获取资料。

一. 客户端

<Meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> Insert title here

二. 服务器端

@Controller
public class ExchangeJsonController {
@RequestMapping("/base/json.do")
public void exchangeJson(HttpServletRequest request,HttpServletResponse response) {
try {
response.setContentType("text/plain");
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires",0);
Map<String,String> map = new HashMap<String,String>();
map.put("result","content");
PrintWriter out = response.getWriter();
JSONObject resultJSON = JSONObject.fromObject(map); //根据需要拼装json
String jsonpCallback = request.getParameter("jsonpCallback");//客户端请求参数
out.println(jsonpCallback+"("+resultJSON.toString(1,1)+")");//返回jsonp格式数据
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

以上就是小编为大家带来的浅谈JQuery+ajax+jsonp 跨域访问全部内容了,希望大家多多支持编程之家~

原文链接:https://www.f2er.com/ajax/47583.html

猜你在找的Ajax相关文章