我有些奇怪,我的使用Angular和Firestore的应用程序可以在localhost上正常运行,但是当它投入生产时,上述函数会进入.then,但也会陷入.catch错误,并且不会继续。
login(email:string,password:string){
this.email=email;
this.afAuth.auth.signInWithEmailAndPassword(email,password)
.then(value => {
console.log('Nice, it worked!');
this.navigate();
})
.catch(err => {
Swal.fire({
type: 'info',
title: 'Información:',
text: 'Revisa por favor la contraseña o correo ingresado',
footer: 'no coinciden!'
});
});
}
任何帮助,请:)
答案 0 :(得分:0)
您应该登录var tasks = new List<Task>();
await connection.OpenAsync();
soldUrls.ForEach(....) .. etc ...
以查看其消息所包含的内容。然后可能会重新抛出它或返回被拒绝的诺言,因为如果发生错误,err
不应返回成功。