I have this ajax request:
我有这个ajax请求:
$.ajax({
dataType: 'json',
error: function(result) {
alert('Error: ' + result.status);
},
type: 'GET',
data: "",
success: function(data) {
//do some stuff
},
url: 'info/' + hash + '.json'
});
And while in Firefox this works great, in Chrome I get a 404 error, how can I fix it to work in Chrome too?
虽然在Firefox中这很好用,但在Chrome中我遇到了404错误,我该怎样修复它才能在Chrome中运行?
1 个解决方案
#1
1
try to use a full url-
尝试使用完整的网址 -
url: 'http://yoursite.com/YourDirectorys/info/' + hash + '.json
or a none relative url-
或者没有相对的网址 -
url: '/YourDirectorys/info/' + hash + '.json
#1
1
try to use a full url-
尝试使用完整的网址 -
url: 'http://yoursite.com/YourDirectorys/info/' + hash + '.json
or a none relative url-
或者没有相对的网址 -
url: '/YourDirectorys/info/' + hash + '.json