I'm using AngularJs and I have this method
$scope.login = function (email, usuario, senha) {
$http.post("/Login/login", { email: email, usuario: usuario, senha: senha })
.success(function (data) {
debugger;
if (data == "Empresa nao encontrada.") {
UIkit.modal.alert(data, { labels: { 'Ok': 'OK' } });
return;
}
else if (data == "Usuário ou Senha inválidos.") {
UIkit.modal.alert(data, { labels: { 'Ok': 'OK' } });
return;
}
else {
window.sessionStorage.setItem('acessos', JSON.stringify(data));//coloca os acessos em uma sessão.storage
window.location.href = '#/';
}
})
.error(function (error) {
alert("Erro");
});
};
The BackEnd is returning "Company not found." this can be seen in the following image
Butthecodeofif(data=="Empresa nao encontrada.") {...}
does not execute, only the code of else
is executed, because?