I have created a small web site, where I am showing some data, which I get from an API (JSON data type). In my console I am getting these two errors:
1) GET .woff2 404 (Not Found)
error 1) is in my code pointing to this line of code:
<script src=""></script>
2) GET http://localhost/[object%20Event] 404 (Not Found)
and error 2) is in my code pointing on this line of code:
function getData(url){
return $.ajax({
type: 'GET',
dataType: 'json',
url: url
});
}
Any idea what these errors mean? These particular errors have no effect on the site; the site is still working and showing all data.
I have created a small web site, where I am showing some data, which I get from an API (JSON data type). In my console I am getting these two errors:
1) GET http://fonts.gstatic./s/opensans/v10/u-WUoqrET9fUeobQW7jkRRJtnKITppOI_IvcXXDNrsc.woff2 404 (Not Found)
error 1) is in my code pointing to this line of code:
<script src="https://maps.googleapis./maps/api/js"></script>
2) GET http://localhost/[object%20Event] 404 (Not Found)
and error 2) is in my code pointing on this line of code:
function getData(url){
return $.ajax({
type: 'GET',
dataType: 'json',
url: url
});
}
Any idea what these errors mean? These particular errors have no effect on the site; the site is still working and showing all data.
Share Improve this question edited Mar 8, 2016 at 21:58 gitsitgo 6,7993 gold badges35 silver badges45 bronze badges asked Apr 15, 2015 at 18:47 DaniKRDaniKR 2,44810 gold badges41 silver badges50 bronze badges 5- 3 The error says exactly what it means: (Not Found). The server has no idea what your URL means. – Pointy Commented Apr 15, 2015 at 18:49
- 2 If you can't find your car keys in the morning, then they're 404... – Marc B Commented Apr 15, 2015 at 18:49
- possible duplicate of jQuery Ajax post - 404 error – Michelangelo Commented Apr 15, 2015 at 18:49
-
1
The second error means that the variable
url
in your "getData" function isn't what you think it is; it's an event object and not a URL string. – Pointy Commented Apr 15, 2015 at 18:50 - 1 I get the same error when I use jQuery animate function. This did not happen yesterday. – IvanJ Commented Apr 16, 2015 at 3:34
2 Answers
Reset to default 5The 404 code means that the server was unable to locate the files you were looking for via GET request.
You might try adding the text/javascript type to your tags, as the examples for google maps api do.
ie:
<script type="text/javascript" src="https://maps.googleapis./maps/api/js"></script>
As far as the second problem you encountered, it looks like the url you passed into the getData() function was invalid.
ajax is asynchronous request means that you cant return it when it is in progress so if you want return any thing from ajax you must call it's events like success
and error
.so your code must like below:
function getData(url){
$.ajax({
type: 'GET',
dataType: 'json',
url: url,
success: function(data){
return data;
},
error: function(data){
console.log(data.responseText);
}
});
}