透過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...

48,289 Responses

  1. GreggJed表示:

    ivermectin pills human: buy ivermectin online – ivermectin 9 mg

  2. Jeffreygumma表示:

    https://clomid.auction/# where buy generic clomid prices

  3. Enriquemob表示:

    https://clomid.auction/# can i get generic clomid without prescription

  4. RobertPrafe表示:

    http://prednisone.auction/# prednisone

  5. Enriquemob表示:

    http://stromectol.guru/# ivermectin cost canada

  6. GreggJed表示:

    prescription for amoxicillin: cheap amoxicillin – amoxacillian without a percription

  7. Enriquemob表示:

    https://amoxil.guru/# amoxicillin 775 mg

  8. Enriquemob表示:

    https://prednisone.auction/# prednisone 5mg price

  9. Jeffreygumma表示:

    http://stromectol.guru/# ivermectin buy

  10. GreggJed表示:

    can i buy cheap clomid tablets: Buy Clomid online – can i get cheap clomid no prescription

  11. DavidLek表示:

    п»їpaxlovid paxlovid pharmacy paxlovid pharmacy

  12. RobertPrafe表示:

    http://clomid.auction/# can i buy cheap clomid without dr prescription

  13. Enriquemob表示:

    http://paxlovid.guru/# paxlovid for sale

  14. Enriquemob表示:

    https://paxlovid.guru/# paxlovid price

  15. Enriquemob表示:

    http://stromectol.guru/# ivermectin lotion for lice

  16. Enriquemob表示:

    http://paxlovid.guru/# paxlovid pill

  17. Enriquemob表示:

    https://stromectol.guru/# ivermectin 3mg tablet

  18. GreggJed表示:

    prednisone without prescription 10mg: buy prednisone over the counter – prednisone steroids

  19. DavidLek表示:

    paxlovid pill paxlovid india paxlovid india

  20. RobertPrafe表示:

    http://clomid.auction/# order generic clomid online

  21. Enriquemob表示:

    http://paxlovid.guru/# paxlovid cost without insurance

  22. Jeffreygumma表示:

    https://amoxil.guru/# amoxicillin without a prescription

  23. GreggJed表示:

    buy stromectol uk: buy ivermectin online – stromectol tablets 3 mg

  24. Enriquemob表示:

    http://prednisone.auction/# buy prednisone 5mg canada

  25. Jeffreygumma表示:

    http://stromectol.guru/# stromectol price uk

  26. DavidLek表示:

    Paxlovid buy online Paxlovid buy online paxlovid generic

  27. Jeffreygumma表示:

    http://paxlovid.guru/# paxlovid covid

  28. GreggJed表示:

    amoxicillin discount coupon: buy amoxil online – medicine amoxicillin 500

  29. DavidLek表示:

    paxlovid price Buy Paxlovid privately paxlovid pharmacy

  30. GreggJed表示:

    stromectol xr: ivermectin 8 mg – stromectol ireland

發佈留言

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