Hello,

I develop a angularjs v1.4.4 application, this application work fine on 
chrome/ firefox... but doesn't on IE. On the home page, user can be 
authenticated by a web form  by calling :

authenticate: function(callback, mail, password) {
$http.post(app.servicebase, { "service" : "authenticate", "mail" : mail, 
"password" : password }).
success(function(data, status) 
{
                         console.info("userServices.authenticate - call 
success"); 
         if(data.isFailed == true) {
    console.info("userServices.authenticate - error : " + data.exception); 
 }
else {
toolsServices.removeCurrentUser();
toolsServices.setCurrentUser(data.response);
}
        callback(data);
})
.
error(function(data, status) 
{
console.error("authenticate - call failed");  
throw status + ' : ' + data; 
});
} 

PHP respond correctly on Chrome / firefox ... but not on IE (here version 
11 or edge)...

Regards

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to