Ajax跨域请求解决方式

前端

jQuery方式
.ajax({


               type: "POST",
               url: "http://xxx.com/api/test",
               dataType: 'jsonp',
               xhrFields: {
                      withCredentials: true //支持跨域
              },
           success:function(data){
     }

})
原生ajax
xhr.withCredentials = true;

 后端

HttpServletResponse res;
res.setHeader("Access-Control-Allow-Origin", "*");

 

posted @ 2017-04-19 09:53  丨Mars  阅读(198)  评论(0编辑  收藏  举报