透過JS跨網域存取XML檔

為了一些安全性的因素,通常伺服器會阻擋跨網域的XML存取,當然如果你是該網站開發者,所開發的頁面應該將會被放在被認可的網域中,不會碰到這個問題,但我們在開發前期有可能會不在所屬的網域,這樣就會造成開發上的困難,不過我們可以透過Yahoo所提供的YQL查詢語法來解決這個問題,以下就是相關的說明:

若我們在自己的電腦用以下的語法去存取一個網路上的XML

<script>
    $(function () {
        var xmlSource = "http://stanley.cloudlab.tw/crossDomainXML/testXML.xml";
        $.ajax({
            url: xmlSource,
            success: function (data) {
                console.log(data);
            }
        })
    })
</script>

很可能會出現「No Access Control Allow Origin」的訊息:

Cross doamin XML access

但如果套用上YQL之後

<script>
$(function(){
	var xmlSource = "http://stanley.cloudlab.tw/crossDomainXML/testXML.xml";
	var yqlURL = [
		"http://query.yahooapis.com/v1/public/yql",
		"?q=" + encodeURIComponent("select * from xml where url='" + xmlSource + "'"),
		"&format=xml&callback=?"
	].join("");

	$.getJSON(yqlURL, function(data){
		console.log(data)
	});
	
})
</script>
Cross doamin XML access

可以看到已經可以抓到XML內容,這樣可以讓我們較為方便的去開發,其他詳細的使用說明可以參考Yahoo YQL Guide

You may also like...

47,928 Responses

  1. DanielAbice表示:

    https://prednibest.com/# can i buy prednisone online in uk

  2. KennethPah表示:

    50 mg prednisone from canada prednisone without prescription.net cost of prednisone in canada

  3. SamuelBix表示:

    amoxicillin tablets in india: AmoxStar – amoxicillin 500 mg cost

  4. SamuelBix表示:

    buy prednisone online no script: Predni Best – buy prednisone online fast shipping

  5. SamuelBix表示:

    amoxicillin without prescription: buy amoxicillin – amoxicillin medicine over the counter

  6. DanielAbice表示:

    https://prednibest.com/# prednisone 30

  7. ufabet表示:

    Heya i am for the first time here. I found this board and I in finding It really useful & it helped me out much. I hope to provide something back and help others such as you helped me.

  8. DanielAbice表示:

    https://cipharmdelivery.com/# ciprofloxacin

  9. SamuelBix表示:

    how to get cheap clomid: can you get cheap clomid – cost cheap clomid now

  10. KennethPah表示:

    amoxicillin 500mg capsules antibiotic AmoxStar amoxicillin online no prescription

  11. DanielAbice表示:

    https://prednibest.com/# where to buy prednisone 20mg

  12. KennethPah表示:

    antibiotics cipro [url=http://cipharmdelivery.com/#]buy cipro online usa[/url] buy cipro cheap

  13. нарколог на дом краснодар [url=www.motik13.0pk.me/viewtopic.php?id=1996]нарколог на дом краснодар[/url] .

  14. KennethPah表示:

    buy cipro online canada CiPharmDelivery ciprofloxacin order online

  15. DanielAbice表示:

    https://amoxstar.com/# amoxicillin price canada

  16. KennethPah表示:

    where can i get generic clomid now clomidonpharm cost of cheap clomid without a prescription

  17. вызов нарколога на дом краснодар [url=https://zelenograd.rusff.me/viewtopic.php?id=1230/]вызов нарколога на дом краснодар[/url] .

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。