Angular和firebase:无法访问catch块中错误对象的代码属性

时间:2017-05-05 01:08:28

标签: angular firebase firebase-authentication

尝试从catch块中的firebase捕获错误代码。但是Error Interface没有要访问的代码属性。给编译时错误。

Userlogin(email, password) {
this.af.auth.login({
  email: email,
  password: password
},
  {
    provider: AuthProviders.Password,
    method: AuthMethods.Password
  }
).catch(err=>{console.log(err.code)}); //err.code is complaining.
}

有任何帮助吗?感谢。

0 个答案:

没有答案