码迷,mamicode.com
首页 > Web开发 > 详细

网页解决跨域问题

时间:2019-09-02 15:44:34      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:void   页面   ons   前端   拼接   inf   tps   request   control   

1、后台

//预警值
@CrossOrigin
@RequestMapping("/selectT")
//String callback 这个值需要跟页面的jsonp的值对应
void selectT(HttpServletResponse response, String callback) throws IOException {
//设置编码保证前端收到的中文不是???问号
response.setContentType("text/html;charset=utf-8");
// response.setHeader("Access-Control-Allow-Origin", "jsonp");
thresholdService service = new thresholdServiceImp();
threshold threshold = new threshold();
threshold = service.selectThers(1);
JSONObject jsonObject = new JSONObject();
jsonObject.put("threshold", threshold);
//拼接
response.getWriter().print(callback+"("+jsonObject.toString()+")");

}

2、页面Ajax写法

$.ajax({
type:"get",
url:"http://IP(服务器ip地址)/threshold/selectT",
<!--获取json数据-->
dataType:"JSONP",
jsonp:"callback",
processData: false,
success:function(data){
console.info(data);
$("#fazhi").html(data.threshold.state);
},
error:function(){
alert("数据加载异常!");
}
});

网页解决跨域问题

标签:void   页面   ons   前端   拼接   inf   tps   request   control   

原文地址:https://www.cnblogs.com/itxiaoxia/p/11446804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!