2011-04-30 52 views
3

在我的谷歌應用程序引擎應用程序中,我試圖從使用jquery.Ajax的XML文件獲取數據,但是當我運行該頁面時,它會返回404錯誤XML文件。 XML文件位於應用程序的根文件夾中,即與索引頁位於同一級別。在Google App Engine中使用jQuery.Ajax獲取404錯誤

我有一個索引頁和索引頁,我有下面的代碼(script標籤內)

$(document).ready(function(){ 
    $.ajax({ 
    type: "GET", 
    url: "states.xml", 
    dataType: "xml", 
    error:function(xhr,err){ 
     alert("readyState: "+xhr.readyState+"\nstatus: "+xhr.status); 
     alert("responseText: "+xhr.responseText); 
    },    
    success: function(xml) { 
     alert("success"); 
    } 
    }); 
}); 

回答

相關問題