1
$(document).ready(function() {
var path = null;
console.log('${pageContext.request.contextPath}/loadfile');
$.ajax({
dataType: "json",
url: '${pageContext.request.contextPath}/loadfile',
success: function(data){
$.each(data,function(index,obj){
console.log(obj.id);
alert('inside');
path = obj.path;
});
}
});
here/loadfile是返回json對象的url,當我轉到此url時,我能夠看到打印在html頁面上的JSON對象,但是當我訪問包含上面的JavaScript代碼的頁面時,我沒有得到相同的結果我無法接收從我的servlet發送的json對象
你在開發工具中看到了什麼? – SLaks 2013-02-10 14:09:27
'console.log(data)'顯示什麼? – 2013-02-10 14:09:48
它們是否在開發工具的網絡選項卡中有任何請求,它的響應是什麼? – edi9999 2013-02-10 14:10:26