简体   繁体   中英

How can i fetch the error from the firebase backend?

I am working on the forgot password function of my system. Since firebase have it's own backend auth, i wanted to catch the error from firebase and populate it inside the modal.

Below you can see my forgot_password.js

这是代码。

I wanted to fetch any error firebase auth would give me.

在此处输入图像描述

You can't use await with catch() like that. Try using try...catch

const handleResetPassword = (e) =? {
  e.preventDefault();

  try {
    resetPassword(email);
  } catch (error) {
    console.log(e.message);
  }
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM