這篇文章將為大家詳細(xì)講解有關(guān)如何解決angular.js跨域post的問(wèn)題,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)公司是一家專(zhuān)注于網(wǎng)站制作、網(wǎng)站建設(shè)與策劃設(shè)計(jì),南澳網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:南澳等地區(qū)。南澳做網(wǎng)站價(jià)格咨詢(xún):028-86922220跨域,前端開(kāi)發(fā)中經(jīng)常遇到的問(wèn)題,AngularJS實(shí)現(xiàn)跨域方式類(lèi)似于Ajax,使用CORS機(jī)制。
AngularJS XMLHttpRequest:$http用于讀取遠(yuǎn)程服務(wù)器的數(shù)據(jù)
$http.post(url, data, [config]).success(function(){ ... }); $http.get(url, [config]).success(function(){ ... }); $http.get(url, [config]).success(function(){ ... });
一、$http.jsonp【實(shí)現(xiàn)跨域】
1. 指定callback和回調(diào)函數(shù)名,函數(shù)名為JSON_CALLBACK時(shí),會(huì)調(diào)用success回調(diào)函數(shù),JSON_CALLBACK必須全為大寫(xiě)。
2. 指定其它回調(diào)函數(shù),但必須是定義在window下的全局函數(shù)。url中必須加上callback。
二、$http.get【實(shí)現(xiàn)跨域】
1. 在服務(wù)器端設(shè)置允許在其他域名下訪問(wèn)
response.setHeader("Access-Control-Allow-Origin", "*"); //允許所有域名訪問(wèn) response.setHeader("Access-Control-Allow-Origin", "http://www.123.com"); //允許www.123.com訪問(wèn)
2. AngularJS端使用$http.get()
三、$http.post【實(shí)現(xiàn)跨域】
1. 在服務(wù)器端設(shè)置允許在其他域名下訪問(wèn),及響應(yīng)類(lèi)型、響應(yīng)頭設(shè)置
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(),同時(shí)設(shè)置請(qǐng)求頭信息
$http.post('http://localhost/ajax/getAllIndustryCategoty.pt',{languageColumn:'name_eu'},{'Content-Type':'application/x-www-form-urlencoded'}).success(function(data){ $scope.industries = data; });
四、實(shí)現(xiàn)方式
跨域方式一【JSONP】:
方法一:
$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.
方法二【返回值,需要使用對(duì)應(yīng)callback方法接收,但如何置于$scope?】:
$http.jsonp("http://localhost/sitesettings/getBadgeInfo.pt?jsonp=badgeabc&siteid=137bd406"); function badgeabc(data){ ... }
public String execute() throws Exception { String result = FAIL; response.setHeader("", ""); SiteHandlerAction siteHandlerAction = (SiteHandlerAction)BeansFactory.getBean(SiteHandlerAction.class); BadgeHandlerAction badgeHandlerAction = (BadgeHandlerAction)BeansFactory.getBean(BadgeHandlerAction.class); if("".equals(siteid) || siteid == null || StringUtils.isBlank("jsonp")){ result = FAIL; }else{ Site site = siteHandlerAction.find(siteid); UserBadgeStatus userBadgeStatus = badgeHandlerAction.getUserBadgeStatus(site.getId()); if(userBadgeStatus != null){ result = "{\"t\":"+userBadgeStatus.getStyle()+",\"l\":"+userBadgeStatus.getSuspend_location()+",\"s\":"+site.getId()+"}"; JSONObject jsonObj = JSONObject.fromObject(result); String json = jsonObj.toString(); result = jsonp + "(" + json + ")"; } } PrintWriter write = response.getWriter(); write.print(result); write.flush(); write.close(); return NONE; }
跨域方式二【$http.get()】:
function getAdustryController($scope,$http){ $http.get('http://localhost/ajax/getAllIndustryCategoty.pt?languageColumn=name_eu').success(function(data){ $scope.industries = data; }); }
跨域方式三【$http.post()】:
function getAdustryController($scope,$http){ $http.post('http://localhost/ajax/getAllIndustryCategoty.pt',{languageColumn:'name_eu'},{'Content-Type':'application/x-www-form-urlencoded'}).success(function(data){ $scope.industries = data; }); }
// java端支持跨域請(qǐng)求 public String execute(){ response.setHeader("Access-Control-Allow-Origin", "*"); //允許哪些url可以跨域請(qǐng)求到本域 response.setHeader("Access-Control-Allow-Methods","POST"); //允許的請(qǐng)求方法,一般是GET,POST,PUT,DELETE,OPTIONS response.setHeader("Access-Control-Allow-Headers","x-requested-with,content-type"); //允許哪些請(qǐng)求頭可以跨域 SiteHandlerAction SiteHandler = (SiteHandlerAction) BeansFactory.getBean(SiteHandlerAction.class); List list = SiteHandler.getAllIndustryCategory(); //所有的分類(lèi)集合 JSONArray jsonArray = JSONArray.fromObject(list); //將list轉(zhuǎn)為json String json = jsonArray.toString(); //轉(zhuǎn)為json字符串 try { PrintWriter write = response.getWriter(); write.print(json); write.close(); } catch (IOException e) { e.printStackTrace(); } return NONE; }
關(guān)于“如何解決angular.js跨域post的問(wèn)題”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。
網(wǎng)站欄目:如何解決angular.js跨域post的問(wèn)題-創(chuàng)新互聯(lián)
文章源于:http://jinyejixie.com/article46/jghhg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、網(wǎng)站改版、定制開(kāi)發(fā)、商城網(wǎng)站、全網(wǎng)營(yíng)銷(xiāo)推廣、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容