Still quite inexperienced and I'm trying to error handle a "400 Bad Request".
I have a site with a search bar.
The value entered into the search bar is then placed into an api url that returns an object.
Whenever a misspelled search value is entered, the site's console returns a "400 Bad Request" for the api url.
I also receive the error object below from the api url request.
{
"meta": {
"code": 400,
"errorType": "failed_geocode",
"errorDetail": "Couldn't geocode param near: Jljjl",
"requestId": "59208ac96a6071641949481d"
},
"response": {}
}
What I want to do is use a conditional statement like below to handle this error:
try {
if (400 Bad Request) throw "incorrect";
} catch (err) {
document.getElementById('results').innerHTML = "Input is " + err;
}
I've tried conditional statements like the one's below but it seems like I am unable to access any of the values in the error object that is returned:
if (object.meta.code === 400)
if (object.meta.code !== 200)
if (object === undefined) // or null or 0
How can I put the 400 Bad Request error into the "if statement", or is there another way to handle these errors?
Thanks
Still quite inexperienced and I'm trying to error handle a "400 Bad Request".
I have a site with a search bar.
The value entered into the search bar is then placed into an api url that returns an object.
Whenever a misspelled search value is entered, the site's console returns a "400 Bad Request" for the api url.
I also receive the error object below from the api url request.
{
"meta": {
"code": 400,
"errorType": "failed_geocode",
"errorDetail": "Couldn't geocode param near: Jljjl",
"requestId": "59208ac96a6071641949481d"
},
"response": {}
}
What I want to do is use a conditional statement like below to handle this error:
try {
if (400 Bad Request) throw "incorrect";
} catch (err) {
document.getElementById('results').innerHTML = "Input is " + err;
}
I've tried conditional statements like the one's below but it seems like I am unable to access any of the values in the error object that is returned:
if (object.meta.code === 400)
if (object.meta.code !== 200)
if (object === undefined) // or null or 0
How can I put the 400 Bad Request error into the "if statement", or is there another way to handle these errors?
Thanks
-
Are you getting back JSON? You may need to parse the response, for example
JSON.parse(object)
before you can work with it as a JavaScript object. – Adam Recvlohe Commented May 27, 2017 at 23:30 - When you say "getting back JSON", could you elaborate? I'm only receiving the below object when there is an input value error, Thx much: {"meta":{"code":400,"errorType":"failed_geocode","errorDetail":"Couldn't geocode param near: Jljjl","requestId":"59208ac96a6071641949481d"},"response":{}} – TheBiscuit Commented May 27, 2017 at 23:51
-
The response might be in a string like
" {"meta":{"code":400,"errorType":"failed_geocode","errorDetail":"Couldn't geocode param near: Jljjl","requestId":"59208ac96a6071641949481d"},"response":{}}"
. If you parse it withJSON.parse(errorObject)
what do you get? – Adam Recvlohe Commented May 28, 2017 at 0:02 - I believe the response is not a string. I'm getting an "unexpected token" syntax error when using JSON.parse with the error object. Here is the actual api url that is returning the example error object, if you'd like to view it: api.foursquare./v2/venues/… – TheBiscuit Commented May 28, 2017 at 0:27
-
I see, it looks like that is ing from the body of the response. Are you able to do
result.body.meta.code
and get the information? – Adam Recvlohe Commented May 28, 2017 at 0:30
2 Answers
Reset to default 4Using Fetch API, this could be achieved with the following:
fetch(url)
.then((res) => {
if (res.status === 400) {
throw new Error('your error message here');
}
return res.json();
})
.then(json => {
// handle response normally here
})
.catch(ex => {
// handle errors here
});
Just to piggy back off of m1kael this is what I have
window.fetch('https://api.foursquare./v2/venues/explore?v=20170324&near=Jljjl&query=study%20spot&limit=10&intent=browse&radius=100000&venuePhotos=1&client_id=XPQI2RJB3NMDT2JYQIMWDMGZSKRDQZX40NYIOKK02DXB1CVE&client_secret=UNHLLMUWXTEI3USTTN5DRJ02QDWQMHZQ5B22CFX0EY4JLEHO')
.then(r => r.json())
.then(r => {
if (r.meta.code === 400) {
console.error('Error')
} else {
console.log(r)
}
})
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743614542a4478788.html
评论列表(0条)