透過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,280 Responses

  1. HighStakesDB表示:

    Here is my website: HighStakesDB

  2. BernardMop表示:

    cytotec abortion pill cytpremium buy misoprostol over the counter

  3. FobertWen表示:

    you are in point of fact a excellent webmaster. The website loading pace is amazing. It kind of feels that you are doing any distinctive trick. Moreover, The contents are masterwork. you’ve performed a wonderful task in this matter!
    online casinos

  4. BrandenSlomy表示:

    buy priligy: buy priligy max pharm – cheap priligy

  5. DavidBaide表示:

    mexican pharmaceuticals online https://mexicanpharmgate.com/ mexican border pharmacies shipping to usa

  6. DarrenUnjuh表示:

    https://plavixclo.com/# buy clopidogrel online

  7. AlbertDuM表示:

    Clopidogrel 75 MG price: Plavix Clo – п»їplavix generic

  8. DavidBaide表示:

    mexico pharmacies prescription drugs https://mexicanpharmgate.com/ buying prescription drugs in mexico

  9. AlbertDuM表示:

    lisinopril1st: Lisinopril 1st – lisinopril1st

  10. BrandenSlomy表示:

    buy generic prednisone online: prednisone ray pharm – prednisone for dogs

  11. DarrenUnjuh表示:

    http://plavixclo.com/# п»їplavix generic

  12. BrandenSlomy表示:

    buy priligy max pharm: dapoxetine online – buy priligy max pharm

  13. DavidBaide表示:

    medication from mexico pharmacy https://mexicanpharmgate.com/ mexican rx online

  14. Wi88表示:

    Introducing to you the most prestigious online entertainment address today. Visit now to experience now!

  15. StevenNub表示:

    can i order clomid: clomid online – where to buy generic clomid

  16. BrandenSlomy表示:

    can i purchase prednisone without a prescription: Prednisone Without Prescription – cheapest prednisone no prescription

  17. 8DAY表示:

    Introducing to you the most prestigious online entertainment address today. Visit now to experience now!

  18. BrandenSlomy表示:

    prednisone 20 mg tablets: Prednisone Without Prescription – 50 mg prednisone tablet

  19. Dereketerm表示:

    how to buy clomid without prescription: generic clomid – can i get clomid without rx

  20. StevenNub表示:

    cost of amoxicillin: Amoxicillin Com Pharm – amoxicillin 500 mg tablet

  21. Dereketerm表示:

    buy amoxicillin: Com Pharm – amoxicillin 500 mg where to buy

發佈留言

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