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

43,986 Responses

  1. RussellVog表示:

    cipro for sale: cipro for sale – purchase cipro

  2. Williampiree表示:

    buy diflucan otc: order diflucan – canadian order diflucan online

  3. ArchieAnice表示:

    https://doxycyclinest.pro/# doxycycline 100mg tablets

  4. Jeromedug表示:

    doxycycline 100mg online buy doxycycline without prescription doxylin

  5. Jeromedug表示:

    tamoxifen bone density tamoxifen rash pictures tamoxifen pill

  6. RussellVog表示:

    antibiotics cipro: ciprofloxacin over the counter – buy cipro online

  7. RussellVog表示:

    buy cytotec pills online cheap: Abortion pills online – buy cytotec online

  8. ArchieAnice表示:

    https://ciprofloxacin.guru/# buy ciprofloxacin

  9. Jeromedug表示:

    tamoxifen endometrium tamoxifen cyp2d6 tamoxifen cyp2d6

  10. Jeromedug表示:

    doxycycline 100mg doxycycline purchase doxycycline online

  11. Jamesempiz表示:

    order cytotec online: cytotec buy online usa – Misoprostol 200 mg buy online

  12. ArchieAnice表示:

    https://nolvadex.icu/# aromatase inhibitors tamoxifen

  13. RussellVog表示:

    nolvadex pills: tamoxifen adverse effects – tamoxifen and ovarian cancer

  14. RussellVog表示:

    diflucan 110 mg: can i buy diflucan online – diflucan without get a prescription online

  15. Jeromedug表示:

    where to get doxycycline doxycycline medication doxycycline tablets

  16. Williampiree表示:

    ciprofloxacin generic: buy cipro – buy cipro online canada

  17. RussellVog表示:

    buy cytotec online: buy cytotec over the counter – buy cytotec in usa

  18. ArchieAnice表示:

    https://diflucan.icu/# can i buy diflucan from canada

  19. RussellVog表示:

    benefits of tamoxifen: pct nolvadex – does tamoxifen cause joint pain

  20. Williampiree表示:

    how to get diflucan over the counter: can i buy diflucan over the counter uk – diflucan drug coupon

  21. Gmujvf表示:

    purchase ventolin inhalator generic – order theophylline generic buy theophylline pills

  22. Jamesempiz表示:

    does tamoxifen cause menopause: tamoxifen breast cancer prevention – tamoxifen 20 mg

  23. Jeromedug表示:

    purchase doxycycline online where can i get doxycycline doxy 200

  24. RussellVog表示:

    doxycycline 100mg tablets: doxycycline 100mg online – order doxycycline

  25. RussellVog表示:

    tamoxifen 20 mg: liquid tamoxifen – tamoxifen and uterine thickening

  26. Jeromedug表示:

    doxycycline generic doxy doxycycline generic

  27. Jamesempiz表示:

    raloxifene vs tamoxifen: cost of tamoxifen – п»їdcis tamoxifen

  28. RussellVog表示:

    ciprofloxacin generic: cipro online no prescription in the usa – ciprofloxacin

  29. RussellVog表示:

    how to get diflucan: diflucan 150mg fluconazole – diflucan capsule 150mg

發佈留言

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