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

41,753 Responses

  1. Oliverdract表示:

    cheap zithromax pills zithromax 500 mg generic zithromax over the counter

  2. Jameskig表示:

    https://prednisonetablets.shop/# prednisone 30 mg coupon

  3. Andrewwaize表示:

    https://prednisonetablets.shop/# prednisone cost canada

  4. Jameskig表示:

    http://prednisonetablets.shop/# prednisone brand name in usa

  5. ChrisCab表示:

    zithromax azithromycin: can i buy zithromax over the counter – buy zithromax

  6. AaronduH表示:

    cost of ivermectin 1% cream: buy stromectol canada – ivermectin 0.5 lotion india

  7. Oliverdract表示:

    can i get clomid without insurance how can i get cheap clomid for sale how can i get generic clomid

  8. AaronduH表示:

    amoxicillin script: cost of amoxicillin 875 mg – amoxicillin for sale online

  9. Andrewwaize表示:

    http://ivermectin.store/# ivermectin 6

  10. AaronduH表示:

    amoxicillin 500 mg capsule: amoxicillin for sale online – amoxicillin 500 mg

  11. Andrewwaize表示:

    https://azithromycin.bid/# azithromycin zithromax

  12. AaronduH表示:

    amoxicillin 30 capsules price: amoxicillin from canada – amoxicillin 500 mg for sale

  13. Jameskig表示:

    https://prednisonetablets.shop/# prednisone online for sale

  14. Andrewwaize表示:

    http://amoxicillin.bid/# cheap amoxicillin 500mg

  15. Oliverdract表示:

    ivermectin 3mg price buy ivermectin cream for humans cost of ivermectin

  16. AaronduH表示:

    ivermectin 10 ml: buy stromectol pills – ivermectin 200

  17. Andrewwaize表示:

    http://clomiphene.icu/# can i buy clomid without prescription

  18. Oliverdract表示:

    clomid prices cost of cheap clomid without a prescription can i get clomid no prescription

  19. AaronduH表示:

    buy zithromax online fast shipping: zithromax online usa no prescription – buy zithromax without presc

  20. Oliverdract表示:

    zithromax 500 mg lowest price online zithromax 500 mg lowest price online buy zithromax online australia

  21. Andrewwaize表示:

    http://prednisonetablets.shop/# prednisone 10mg

  22. AaronduH表示:

    amoxicillin 1000 mg capsule: amoxicillin 500mg for sale uk – amoxicillin no prescription

  23. ChrisCab表示:

    zithromax over the counter canada: zithromax z-pak – zithromax for sale 500 mg

  24. Jameskig表示:

    http://clomiphene.icu/# can you get clomid without dr prescription

  25. Oliverdract表示:

    where to buy generic clomid without insurance where to get clomid where can i get generic clomid without a prescription

  26. Andrewwaize表示:

    http://clomiphene.icu/# order generic clomid for sale

  27. ChrisCab表示:

    can i order cheap clomid without a prescription: where buy generic clomid tablets – can i buy clomid online

  28. Andrewwaize表示:

    http://amoxicillin.bid/# amoxicillin 500 mg price

  29. Oliverdract表示:

    prednisone in canada order prednisone online no prescription prednisone pill prices

  30. AaronduH表示:

    buy zithromax canada: generic zithromax india – buy cheap generic zithromax

發佈留言

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