$(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;
});
}
});
这里 /loadfile 是返回 json 对象的 url,当我转到这个 url 时,我可以看到打印在 html 页面上的 JSON 对象,但是当我访问包含上述 javascript 代码的页面时,我没有得到相同的结果