久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

JSONP - Allen Wang - 博客園

 Tom5 2009-06-17

1) 什么是JSONP?
JSONP是一個(gè)非官方的協(xié)議,,它允許在服務(wù)器端集成Script tags返回至客戶端,通過(guò)javascript callback的形式實(shí)現(xiàn)跨域訪問(wèn)(這僅僅是JSONP簡(jiǎn)單的實(shí)現(xiàn)形式)。

2) 如何使用JSONP?
    1. 在客戶端調(diào)用提供JSONP支持的URL Service,,獲取JSONP格式數(shù)據(jù)
        比如客戶想訪問(wèn)http://www./myService.aspx?jsonp=callbackFunction
        假設(shè)客戶期望返回JSON數(shù)據(jù):[“customername1","customername2"]
        那么直正返回到客戶端的Script Tags: callbackFunction(
[“customername1","customername2"])
        可能的調(diào)用方式:
       

<script type="text/javascript" src="http://www./myService.aspx?jsonp=callbackFunction" />

    2. 在客戶端寫callbackFunction函數(shù)的實(shí)現(xiàn)         

<script type="text/javascript">
        function onCustomerLoaded(result, methodName)
        {
            var html = '<ul>';
            for(var i = 0; i < result.length; i++)
            {
                html += '<li>' + result[i] + '</li>';
            }
            html += '</ul>';

             document.getElementById ( 'divCustomers'). innerHTML =  html;
        }
    </script>

      3. 頁(yè)面展示         

<div id="divCustomers"></div>

      4. 最終Page Code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www./TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www./1999/xhtml" >
<head>
    <title>Top Customers with Callback</title>
</head>
<body>
    <div id="divCustomers"></div>
    <script type="text/javascript">
        function onCustomerLoaded(result, methodName)
        {
            var html = '<ul>';
            for(var i = 0; i < result.length; i++)
            {
                html += '<li>' + result[i] + '</li>';
            }
            html += '</ul>';

            document.getElementById('divCustomers').innerHTML = html;
        }
    </script>
    <script type="text/javascript" src="http://www./myService.aspx?jsonp=callbackFunction"></script>
    
</body>
</html>

3) JSONP在JQuery中如何體現(xiàn)的

     1. $.getJSON    

<script>
  $(document).ready(function(){
    $.getJSON("http://api./services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?",
        function(data){
          $.each(data.items, function(i,item){
            $("<img/>").attr("src", item.media.m).appendTo("#images");
            if ( i == 3 ) return false;
          });
        });
  });
  </script>

      jsoncallback=?,,其中,?會(huì)自動(dòng)替換為function(data)函數(shù)。

       2. $.ajax

$.ajax({
  dataType: 'jsonp',
  data: 'id=10',
  jsonp: 'jsonp_callback',
  url: 'http:///getdata',
  success: function () {
    // do stuff
  },
});

4) 如何在服務(wù)器端實(shí)現(xiàn)對(duì)JSON支持?
   這僅僅需要把服務(wù)的JSON數(shù)據(jù)轉(zhuǎn)換成想要的script tags的形式就可以了,,格式可以自已定義,,畢竟這是個(gè)非官方的協(xié)議。
   可參考:Implement JSONP in your Asp.net Application

注:Callback僅僅是JSONP的簡(jiǎn)單實(shí)現(xiàn),,可以根據(jù)具體需要實(shí)現(xiàn)更復(fù)雜的功能,,比如可以在客戶端動(dòng)態(tài)集成更多的變量數(shù)據(jù)來(lái)完成分頁(yè)功能,。


    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多