Error catch

This commit is contained in:
dev-chiefworks
2023-01-11 21:05:52 -05:00
parent 05111a2a25
commit 3d4328e59f
+38 -12
View File
@@ -12,22 +12,48 @@ class SiteService {
getAuxEnd(uri, reqData) {
const endPoint = process.env.REACT_APP_AUX_ENDPOINT + uri;
Axios.get(endPoint).then((response) => {
console.log(response);
res = response;
console.log("~~~~~~~ Toks2 GET ~~~~~~~~");
return response;
});
Axios.get(endPoint)
.then((response) => {
console.log(response);
res = response;
console.log("~~~~~~~ Toks2 GET ~~~~~~~~");
return response;
})
.catch((error) => {
if (error.response) {
//response status is an error code
console.log(error.response.status);
} else if (error.request) {
//response not received though the request was sent
console.log(error.request);
} else {
//an error occurred when setting up the request
console.log(error.message);
}
});
}
getAuxEnd(uri, reqData) {
const endPoint = process.env.REACT_APP_AUX_ENDPOINT + uri;
Axios.post(endPoint).then((response) => {
console.log(response);
res = response;
console.log("~~~~~~~ Toks2 POST ~~~~~~~~");
return response;
});
Axios.post(endPoint)
.then((response) => {
console.log(response);
res = response;
console.log("~~~~~~~ Toks2 POST ~~~~~~~~");
return response;
})
.catch((error) => {
if (error.response) {
//response status is an error code
console.log(error.response.status);
} else if (error.request) {
//response not received though the request was sent
console.log(error.request);
} else {
//an error occurred when setting up the request
console.log(error.message);
}
});
}
}