AngularJS实现跨域请求

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Aaor_01/article/details/77374812
跨域,前端开发中经常遇到的问题,AngularJS实现跨域方式类似于Ajax,使用CORS机制。
下面阐述一下AngularJS中使用$http实现跨域请求数据。
AngularJS XMLHttpRequest:$http用于读取远程服务器的数据
[javascript]  view plain  copy
  1. $http.post(url, data, [config]).success(function(){ ... });  
  2. $http.get(url, [config]).success(function(){ ... });  
  3. $http.get(url, [config]).success(function(){ ... });  

一、$http.jsonp【实现跨域】

1. 指定callback和回调函数名,函数名为JSON_CALLBACK时,会调用success回调函数,JSON_CALLBACK必须全为大写。 
2. 指定其它回调函数,但必须是定义在window下的全局函数。url中必须加上callback。 

二、$http.get【实现跨域】

1. 在服务器端设置允许在其他域名下访问
[java]  view plain  copy
  1. response.setHeader("Access-Control-Allow-Origin""*"); //允许所有域名访问  
  2. response.setHeader("Access-Control-Allow-Origin""http://www.123.com"); //允许www.123.com访问  
2. AngularJS端使用$http.get()

三、$http.post【实现跨域】

1. 在服务器端设置允许在其他域名下访问,及响应类型、响应头设置
[java]  view plain  copy
  1. response.setHeader("Access-Control-Allow-Origin""*");  
  2. response.setHeader("Access-Control-Allow-Methods","POST");  
  3. response.setHeader("Access-Control-Allow-Headers","x-requested-with,content-type");  
2. AngularJS端使用$http.post(),同时设置请求头信息
[javascript]  view plain  copy
  1. $http.post('http://localhost/ajax/getAllIndustryCategoty.pt',{languageColumn:'name_eu'},{'Content-Type':'application/x-www-form-urlencoded'}).success(function(data){  
  2.         $scope.industries = data;  
  3.     });  

四、实现方式

跨域方式一【JSONP】:

方法一:
[javascript]  view plain  copy
  1. $http.jsonp("http://localhost/sitesettings/getBadgeInfo.pt?jsonp=JSON_CALLBACK&siteid=137bd406").success(function(data){ ... });  
  2. //  The name of the callback should be the string JSON_CALLBACK.  
方法二【返回值,需要使用对应callback方法接收,但如何置于$scope???】:
[javascript]  view plain  copy
  1. $http.jsonp("http://localhost/sitesettings/getBadgeInfo.pt?jsonp=badgeabc&siteid=137bd406");  
  2. function badgeabc(data){ ... }  
[java]  view plain  copy
  1. public String execute() throws Exception {    
  2.     String result = FAIL;  
  3.     response.setHeader("""");  
  4.     SiteHandlerAction siteHandlerAction = (SiteHandlerAction)BeansFactory.getBean(SiteHandlerAction.class);  
  5.     BadgeHandlerAction badgeHandlerAction = (BadgeHandlerAction)BeansFactory.getBean(BadgeHandlerAction.class);  
  6.     if("".equals(siteid) || siteid == null || StringUtils.isBlank("jsonp")){  
  7.         result = FAIL;  
  8.     }else{  
  9.         Site site = siteHandlerAction.find(siteid);  
  10.         UserBadgeStatus userBadgeStatus = badgeHandlerAction.getUserBadgeStatus(site.getId());  
  11.         if(userBadgeStatus != null){  
  12.             result = "{\"t\":"+userBadgeStatus.getStyle()+",\"l\":"+userBadgeStatus.getSuspend_location()+",\"s\":"+site.getId()+"}";  
  13.             JSONObject jsonObj = JSONObject.fromObject(result);  
  14.             String json = jsonObj.toString();  
  15.             result = jsonp + "(" + json + ")";  
  16.         }  
  17.     }  
  18.     PrintWriter write = response.getWriter();  
  19.     write.print(result);  
  20.     write.flush();  
  21.     write.close();  
  22.     return NONE;  
  23. }  

跨域方式二【$http.get()】:

[javascript]  view plain  copy
  1. function getAdustryController($scope,$http){  
  2.     $http.get('http://localhost/ajax/getAllIndustryCategoty.pt?languageColumn=name_eu').success(function(data){  
  3.         $scope.industries = data;  
  4.     });  
  5. }  

跨域方式三【$http.post()】:

[javascript]  view plain  copy
  1. function getAdustryController($scope,$http){  
  2.     $http.post('http://localhost/ajax/getAllIndustryCategoty.pt',{languageColumn:'name_eu'},{'Content-Type':'application/x-www-form-urlencoded'}).success(function(data){  
  3.         $scope.industries = data;  
  4.     });  
  5. }  
[java]  view plain  copy
  1. // java端支持跨域请求  
  2. public String execute(){  
  3.     response.setHeader("Access-Control-Allow-Origin""*"); //允许哪些url可以跨域请求到本域  
  4.     response.setHeader("Access-Control-Allow-Methods","POST"); //允许的请求方法,一般是GET,POST,PUT,DELETE,OPTIONS  
  5.     response.setHeader("Access-Control-Allow-Headers","x-requested-with,content-type"); //允许哪些请求头可以跨域  
  6.       
  7.     SiteHandlerAction SiteHandler = (SiteHandlerAction) BeansFactory.getBean(SiteHandlerAction.class);  
  8.     List<IndustryCategory> list = SiteHandler.getAllIndustryCategory(); //所有的分类集合  
  9.     JSONArray jsonArray = JSONArray.fromObject(list); //将list转为json  
  10.     String json = jsonArray.toString(); //转为json字符串  
  11.     try {  
  12.         PrintWriter write = response.getWriter();  
  13.         write.print(json);  
  14.         write.close();  
  15.     } catch (IOException e) {  
  16.         e.printStackTrace();  
  17.     }  
  18.     return NONE;  
  19. }  

[html]  view plain  copy
  1. <table ng-controller="getAdustryController">  
  2.     <tr ng-repeat='industry in industries'>  
  3.         <td>{{ industry.id }}</td>  
  4.         <td>{{ industry.name_ch }}</td>  
  5.         <td>{{ industry.name_eu }}</td>  
  6.         <td>{{ industry.name_jp }}</td>  
  7.     </tr>  
  8. </table>  

猜你喜欢

转载自blog.csdn.net/Aaor_01/article/details/77374812