介紹一個JSONP 跨域訪問代理API-yahooapis

來源:互聯網
上載者:User

 

你是否遇到了想利用AJAX訪問一些公網API,但是你又不想建立自己的代理服務,因為有時我根本就沒打算涉及服務端任何代碼,但是討厭的瀏覽器的三原策略,阻止了我們的ajax調用。

比如我想訪問一個天氣的restfull api,如果我直接去GET:

 $.get("http://m.weather.com.cn/data/101010100.html");

650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/122330L01-0.jpg" width="600" height="61" alt="" /> 

    看見這問題相信大家都不會陌生,也會很自然的得到解決方案,但是我這裡真的不想touch任何服務端代碼,用jsonp吧,但是服務端沒實現契約。

在這裡我是時候引入主角yahoo提供的jsonp代理:http://query.yahooapis.com/v1/public/yql

實現跨域存取碼為:http://jsfiddle.net/whitewolf/4UDpf/9/

html:
<script type="text/javascript" src="http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script>
<div id="content">
    

</div>

js:
$(function(){
    $.getJSON("http://query.yahooapis.com/v1/public/yql", {
    q: "select * from json where url=\"http://m.weather.com.cn/data/101010100.html\"",
    format: "json"
}, function(data) {
    var $content = $("#content")
    if (data.query.results) {
        $content.text(JSON.stringify(data.query.results));
    } else {
        $content.text('no such code: ' + code);
    }
});

});

效果:

650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/122330B41-1.jpg" width="500" height="348" alt="" /> 

      多的就不用說了,jsonp原理我相信大家也很清楚。 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.