asynchronous javascript and xml (ajax ) 是驅動新一代 web 站點(流行術語為 web 2.0 站點)的關鍵技術。ajax 允許在不干擾 web 應用程序的顯示和行為的情況下在后臺進行數據檢索。使用 xmlhttprequest
函數獲取數據,它是一種 api,允許客戶端 javascript 通過 http 連接到遠程服務器。ajax 也是許多 mashup 的驅動力,它可將來自多個地方的內容集成為單一 web 應用程序。
我們都知道,由于受到瀏覽器的限制,ajax 是不允許跨域請求。不過可以通過使用 jsonp 來實現。jsonp 是一種通過腳本標記注入的方式,它是可以引用跨域 url 的 js 腳本,不過需要提供一個回調函數(必須在您自己的頁面上),因此,你可以自己處理結果。 本文介紹了 jsonp 的是怎么在 jquery,mootools 的,dojo toolkit 中實現的。
jquery 的 jsonp
1. 什么是 jsonp
要了解 jsonp,不得不提一下 json,那什么是 json?
json is a subset of the object literal notation of javascript. since json is a subset of javascript, it can be used in the language with no muss or fuss.
jsonp(json with padding) 是一個非官方的協議,它允許在服務器端集成 script tags 返回至客戶端,通過 javascript callback 的形式實現跨域訪問(這僅僅是 jsonp 簡單的實現形式)。
2. jsonp有什么用
由于同源策略的限制,xmlhttprequest 只允許請求當前源(域名、協議、端口)的資源,為了實現跨域請求,可以通過 script 標簽實現跨域請求,然后在服務端輸出 json 數據并執行回調函數,從而解決了跨域的數據請求。
jquery.getjson 方法:
js 代碼如下:
jquery.getjson("http://search.twitter.com/search.json?callback=?",{ q: "arsenal" },function(tweets) { // handle response here console.info("twitter returned: ",tweets); });
或者類似
js 代碼如下:
$.ajax({ type:"get", data:"random = "+math.random(), url:url, datatype:"jsonp", jsonp:"callback", success:function(data){ $.each(data, function(key, val) { $("#mydiv").html($("#mydiv").html()+val.cvalue+"</br>"); }); } });
回調方法的參數通過 getjson 就可以獲取到 json 對象
mootools jsonp
mootools 需要 request.jsonp class,可以從這里下載 mootools more。選擇 request.jsonp
這樣從另一個域獲取 json 就是小菜一碟了
js 代碼如下:
new request.jsonp({ url: "http://search.twitter.com/search.json", data: { q: "arsenal" },//提交的參數, 沒有參數可以不寫 callbackkey: 'jsoncallback',//自己定義回調函數的參數名稱 oncomplete: function(tweets) { // log the result to console for inspection console.info("twitter returned: ",tweets); } }).send();
如果自己定義了回調函數的參數名稱,跟 jquery 一樣
服務器端你需要這樣去取得:
js 代碼如下:
string callback = request.getparameter("jsoncallback");//取得回調方法名 response.setheader("cache-control", "no-cache"); response.setcontenttype("text/json;charset = utf-8"); printwriter out; try { out = response.getwriter(); out.print(callback+"("+message+")");//這里是關鍵.主要就是這里 out.flush(); out.close(); } catch (ioexception e) { e.printstacktrace(); }
順便說一句:個人比較喜歡 mootools 的語法結構,和框架設計思路,再次贊美!
dojo jsonp
jsonp 在 dojo toolkit 中需要用上 dojo.io.script (點擊可以查看示例)
js 代碼如下:
// dojo.io.script is an external dependency, so it must be required dojo.require("dojo.io.script"); // when the resource is ready dojo.ready(function() { // use the get method dojo.io.script.get({ // the url to get json from twitter url: "http://search.twitter.com/search.json", // the callback paramater callbackparamname: "callback", // twitter requires "callback" // the content to send content: { q: "arsenal" }, // the success callback load: function(tweetsjson) { // twitter sent us information! // log the result to console for inspection console.info("twitter returned: ",tweetsjson); } }); });
jsonp 是一種非常有效的,可靠的,容易實現的遠程數據獲取方式。jsonp 的策略也使開發人員能夠避免繁瑣的服務器代理方式,很方便的獲取數據。
jsonp (json with padding) 是一個非官方的協議,它允許在服務器端集成 script tags 返回至客戶端,通過 javascript callback 的形式實現跨域訪問(這僅僅是 jsonp 簡單的實現形式)。
客戶端代碼:
<meta content="text/html; charset=utf-8" http-equiv="content-type" /> <script type="text/javascript"> function jsonpcallback(result) { //alert(result); for(var i in result) { alert(i+":"+result[i]); //循環輸出a:1, b:2, etc. } } var jsonp=document.createelement("script"); jsonp.type = "text/javascript"; jsonp.src = "http://crossdomain.com/services.php?callback = jsonpcallback"; document.getelementsbytagname("head")[0].appendchild(jsonp); </script>
服務端代碼:
<?php //服務端返回 json 數據 $arr=array('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5); $result=json_encode($arr); //echo $_get['callback'].'("hello,world!")'; //echo $_get['callback']."($result)"; //動態執行回調函數 $callback = $_get['callback']; echo $callback."($result)";
到此這篇關于ajax跨域請求獲取json數據的文章就介紹到這了,更多相關ajax跨域請求獲取json數據內容請搜索碩編程以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持碩編程!