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

AngularJS的$http的跨域问题

时间:2017-01-17 18:57:34      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:callback   tin   工作   localhost   type   column   .post   允许   请求   

了解了angularjs的$http方法的本质跟jquery ajax方法是一样的,就开始担心跨域的问题,以前开发工作紧张,遇到了也把跨域问题放下,毕竟做的传统web开发,后端提供的接口和前端都会发布在一个服务器上,现在做的项目大了,自然遇到一些团队只负责发布API,而我们团队只能去调用,跨域肯定是不可跳过的步骤啦。

没想到这么一了解居然有这么多跨域的方法,也不知道可行不可行!先当时mark了吧

 

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

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

实现:

方法一:

$http.jsonp("http://localhost/sitesettings/getBadgeInfo.pt?jsonp=JSON_CALLBACK&siteid=137bd406").success(function(data){ ... });
//  The name of the callback should be the string JSON_CALLBACK.

方法二【返回值,需要使用对应callback方法接收,但如何置于$scope???】:

$http.jsonp("http://localhost/sitesettings/getBadgeInfo.pt?jsonp=badgeabc&siteid=137bd406");
function badgeabc(data){ ... }

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

1. 在服务器端设置允许在其他域名下访问

response.setHeader("Access-Control-Allow-Origin", "*"); //允许所有域名访问
response.setHeader("Access-Control-Allow-Origin", "http://www.123.com"); //允许www.123.com访问

2. AngularJS端使用$http.get()

实现:

$http.get(‘http://localhost/ajax/getAllIndustryCategoty.pt?languageColumn=name_eu‘).success(function(data){
	$scope.industries = data;
});

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

1. 在服务器端设置允许在其他域名下访问,及响应类型、响应头设置

response.setHeader("Access-Control-Allow-Origin", "*");
response.setHeader("Access-Control-Allow-Methods","POST");
response.setHeader("Access-Control-Allow-Headers","x-requested-with,content-type");

2. AngularJS端使用$http.post(),同时设置请求头信息

实现:

$http.post(‘http://localhost/ajax/getAllIndustryCategoty.pt‘,{languageColumn:‘name_eu‘},{‘Content-Type‘:‘application/x-www-form-urlencoded‘}).success(function(data){
	$scope.industries = data;
});

AngularJS的$http的跨域问题

标签:callback   tin   工作   localhost   type   column   .post   允许   请求   

原文地址:http://www.cnblogs.com/flyGrey/p/6294091.html

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