我有这个ajax请求:
$.ajax({
dataType: 'json',
error: function(result) {
alert('Error: ' + result.status);
},
type: 'GET',
data: "",
success: function(data) {
//do some stuff
},
url: 'info/' + hash + '.json'
});
虽然在Firefox中效果很好,但在Chrome中我遇到了404错误,我该怎样修复它才能在Chrome中运行?
答案 0 :(得分:1)
尝试使用完整的网址 -
url: 'http://yoursite.com/YourDirectorys/info/' + hash + '.json
或无相对网址
url: '/YourDirectorys/info/' + hash + '.json