W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
XMLHttpRequest
函數(shù)獲取數(shù)據(jù),它是一種 API,允許客戶(hù)端 JavaScript 通過(guò) HTTP 連接到遠(yuǎn)程服務(wù)器。Ajax 也是許多 mashup 的驅(qū)動(dòng)力,它可將來(lái)自多個(gè)地方的內(nèi)容集成為單一
Web 應(yīng)用程序。我們都知道,由于受到瀏覽器的限制,AJAX 是不允許跨域請(qǐng)求。不過(guò)可以通過(guò)使用 JSONP 來(lái)實(shí)現(xiàn)。JSONP 是一種通過(guò)腳本標(biāo)記注入的方式,它是可以引用跨域 URL 的 js 腳本,不過(guò)需要提供一個(gè)回調(diào)函數(shù)(必須在您自己的頁(yè)面上),因此,你可以自己處理結(jié)果。 本文介紹了 JSONP 的是怎么在 jQuery,MooTools 的,Dojo Toolkit 中實(shí)現(xiàn)的。
要了解 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) 是一個(gè)非官方的協(xié)議,它允許在服務(wù)器端集成 Script tags 返回至客戶(hù)端,通過(guò) javascript callback 的形式實(shí)現(xiàn)跨域訪(fǎng)問(wèn)(這僅僅是 JSONP 簡(jiǎn)單的實(shí)現(xiàn)形式)。
由于同源策略的限制,XmlHttpRequest 只允許請(qǐng)求當(dāng)前源(域名、協(xié)議、端口)的資源,為了實(shí)現(xiàn)跨域請(qǐng)求,可以通過(guò) script 標(biāo)簽實(shí)現(xiàn)跨域請(qǐng)求,然后在服務(wù)端輸出 JSON 數(shù)據(jù)并執(zhí)行回調(diào)函數(shù),從而解決了跨域的數(shù)據(jù)請(qǐng)求。
jQuery.getJSON 方法:
Js 代碼如下:
jQuery.getJSON("http://search.twitter.com/search.json?callback=?",{
q: "Arsenal"
},function(tweets) {
// Handle response here
console.info("Twitter returned: ",tweets);
});
或者類(lèi)似
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>");
});
}
});
回調(diào)方法的參數(shù)通過(guò) getJSON 就可以獲取到 json 對(duì)象
MooTools 需要 Request.JSONP Class,可以從這里下載 MooTools More。選擇 Request.JSONP
這樣從另一個(gè)域獲取 JSON 就是小菜一碟了
Js 代碼如下:
new Request.JSONP({
url: "http://search.twitter.com/search.json",
data: {
q: "Arsenal"
},//提交的參數(shù), 沒(méi)有參數(shù)可以不寫(xiě)
callbackKey: 'jsoncallback',//自己定義回調(diào)函數(shù)的參數(shù)名稱(chēng)
onComplete: function(tweets) {
// Log the result to console for inspection
console.info("Twitter returned: ",tweets);
}
}).send();
如果自己定義了回調(diào)函數(shù)的參數(shù)名稱(chēng),跟 jquery 一樣
服務(wù)器端你需要這樣去取得:
Js 代碼如下:
String callback = request.getParameter("jsoncallback");//取得回調(diào)方法名
response.setHeader("Cache-Control", "no-cache");
response.setContentType("text/json;charset = UTF-8");
PrintWriter out;
try {
out = response.getWriter();
out.print(callback+"("+message+")");//這里是關(guān)鍵.主要就是這里
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
順便說(shuō)一句:個(gè)人比較喜歡 mootools 的語(yǔ)法結(jié)構(gòu),和框架設(shè)計(jì)思路,再次贊美!
JSONP 在 Dojo Toolkit 中需要用上 dojo.io.script (點(diǎn)擊可以查看示例)
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 是一種非常有效的,可靠的,容易實(shí)現(xiàn)的遠(yuǎn)程數(shù)據(jù)獲取方式。JSONP 的策略也使開(kāi)發(fā)人員能夠避免繁瑣的服務(wù)器代理方式,很方便的獲取數(shù)據(jù)。
JSONP (JSON with Padding) 是一個(gè)非官方的協(xié)議,它允許在服務(wù)器端集成 Script tags 返回至客戶(hù)端,通過(guò) javascript callback 的形式實(shí)現(xiàn)跨域訪(fǎng)問(wèn)(這僅僅是 JSONP 簡(jiǎn)單的實(shí)現(xiàn)形式)。
客戶(hù)端代碼:
<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]); //循環(huán)輸出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>
服務(wù)端代碼:
<?php
//服務(wù)端返回 JSON 數(shù)據(jù)
$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)";
//動(dòng)態(tài)執(zhí)行回調(diào)函數(shù)
$callback = $_GET['callback'];
echo $callback."($result)";
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: