I am implementing a login system in php and using ajax requests.
this is my request
hr.open("POST", url, true);
hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
hr.onreadystatechange = function() {
var return_data = hr.responseText;
if(hr.readyState == 4 && hr.status == 200) {
alert('is logged');
}else if (hr.status == 400){
alert('is not logged');
}
}
hr.send(vars); // Actually execute the request
but when i get the response back the browser launches various alerts. Can anyone help how to fix this?
Yeah its working as it should…….onreadystatechange may be called several times in one request..
And for alerting both the conditions is that whenever the request is okay that is 200.
It alerts :
and when it got readystate=4 as well as
Ok signalit alerts:Then
readyState =4 –> request finished and response is ready
status= 200 –> it means the request is successfully handled by the Server.
So, 2nd alert popup because at least your request was successfully handled.
For more info:
https://www.w3schools.com/js/js_ajax_http_response.asp
Here it is: