誰かがFirebase sigin/loginの例をEmail &パスワードで教えてもらえますか?私は非推奨に思える:(Firebase(現行バージョン)と角4でサインイン
あなたは、この機能でエラーを発見することはできますか?
signup(email: string, password: string) {
this._firebaseAuth
.auth
.createUserWithEmailAndPassword(email, password)
.then(value => {
console.log('Success!', value);
})
.catch(err => {
console.log('Something went wrong:',err.message);
});
}
とapp.component.tsに
email: string;
password: string;
constructor(public authService: AuthService) {}
signup() {
this.authService.signup(this.email, this.password);
this.email = this.password = '';
}
のようになります。あなたがこれを実行しようとすると、あなたが最も可能性の高いエラーが発生します。どちらですか? – TomTom101