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

  1. BobbyPem表示:

    https://zithromaxbestprice.icu/# buy cheap zithromax online

  2. StevenZen表示:

    order doxycycline 100mg without prescription: doxycycline 200 mg – doxycycline 100 mg

  3. Djmyhj表示:

    prescription sleep medication online provigil online buy

  4. DavidFrels表示:

    buy doxycycline without prescription: buy doxycycline without prescription – doxycycline online

  5. Jamesarill表示:

    http://nolvadex.fun/# tamoxifen rash pictures

  6. DavidFrels表示:

    nolvadex gynecomastia: nolvadex only pct – nolvadex gynecomastia

  7. DavidFrels表示:

    buy cytotec online fast delivery: buy cytotec pills online cheap – Misoprostol 200 mg buy online

  8. Brandonjat表示:

    tamoxifen citrate pct should i take tamoxifen does tamoxifen cause weight loss

  9. Jamesarill表示:

    http://nolvadex.fun/# does tamoxifen cause menopause

  10. Brandonjat表示:

    doxycycline without a prescription doxycycline without a prescription doxycycline 50mg

  11. DavidFrels表示:

    doxycycline without prescription: purchase doxycycline online – doxycycline hyclate

  12. Brucevaf表示:

    zithromax online no prescription: zithromax online pharmacy canada – generic zithromax azithromycin

  13. Brandonjat表示:

    lisinopril hctz generic lisinopril 3973 generic lisinopril

  14. BobbyPem表示:

    http://zithromaxbestprice.icu/# where to buy zithromax in canada

  15. BobbyPem表示:

    http://lisinoprilbestprice.store/# lisinopril 5 mg brand name

  16. BobbyPem表示:

    https://nolvadex.fun/# tamoxifen warning

  17. Brucevaf表示:

    tamoxifen alternatives premenopausal: tamoxifen 20 mg – raloxifene vs tamoxifen

  18. DavidFrels表示:

    zithromax pill: zithromax 500 – zithromax online no prescription

  19. Brandonjat表示:

    doxycycline hyc doxycycline 100mg price where to purchase doxycycline

  20. StevenZen表示:

    buy cytotec: buy cytotec pills – buy cytotec online fast delivery

  21. DavidFrels表示:

    buy cytotec online: Abortion pills online – buy cytotec pills

  22. Brucevaf表示:

    lisinopril average cost: lisinopril 20 mg price online – price of lisinopril in india

  23. DavidFrels表示:

    zestril 5mg: lisinopril 10 india – lisinopril 3.125

  24. DavidFrels表示:

    zithromax for sale us: generic zithromax over the counter – zithromax

  25. BobbyPem表示:

    http://doxycyclinebestprice.pro/# vibramycin 100 mg

  26. StevenZen表示:

    zithromax 500: zithromax 250mg – how to get zithromax online

  27. BobbyPem表示:

    http://cytotec.icu/# buy misoprostol over the counter

發佈留言

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