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

  1. JeremyPsymn表示:

    https://easyrxcanada.online/# canadian pharmacies online

  2. May I just say what a comfort to find an individual who actually knows what they’re discussing on the internet. You actually know how to bring an issue to light and make it important. More and more people ought to check this out and understand this side of the story. I was surprised that you’re not more popular given that you definitely have the gift.

  3. Lesli表示:

    my webpage :: Daycares popular listings (Lesli)

  4. Simplify your projects and boost productivity with easy-to-use project management software.

  5. Shella表示:

    Also visit my site :: Explore Daycares Locations (Shella)

  6. Robertengep表示:

    https://easyrxindia.shop/# cheapest online pharmacy india

  7. Robertengep表示:

    https://mexstarpharma.online/# mexico pharmacies prescription drugs

  8. AnthonyPress表示:

    mexican border pharmacies shipping to usa best online pharmacies in mexico mexican drugstore online

  9. Giselle表示:

    Also visit my web blog Find top-rated certified Daycares in your area;
    Giselle,

  10. Wesley表示:

    Here is my homepage: Wesley

  11. I love it when folks come together and share ideas. Great site, stick with it.

  12. Feel free to surf to my website; Daycare Near Me

  13. AnthonyPress表示:

    best online pharmacy india Online medicine order online shopping pharmacy india

  14. biardiova表示:

    priligy precio 2 Nonprescribed amphetamines 236 9

  15. You can certainly see your expertise in the work you write. The world hopes for more passionate writers like you who are not afraid to say how they believe. Always follow your heart.

  16. Peterhew表示:

    buying from online mexican pharmacy: purple pharmacy mexico price list – buying prescription drugs in mexico online

  17. At this time it appears like Drupal is the preferred blogging platform available right now. (from what I’ve read) Is that what you are using on your blog?

  18. I blog quite often and I genuinely thank you for your information. Your article has really peaked my interest. I’m going to bookmark your site and keep checking for new details about once per week. I subscribed to your Feed as well.

  19. of lu zhen表示:

    There are actually loads of details like that to take into consideration. That may be a nice level to bring up. I provide the thoughts above as common inspiration but clearly there are questions just like the one you carry up where an important factor will be working in honest good faith. I don?t know if greatest practices have emerged around issues like that, however I’m positive that your job is clearly recognized as a fair game. Both girls and boys really feel the impact of just a moment?s pleasure, for the rest of their lives.

發佈留言

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