0
私は質問があります。 login
機能でActions.Home()
機能を呼び出すにはどうすればいいですか? Actions.home()
は離れreact-native-router-flux
アクションのであり、他のシーンに変更する必要があり、それが正常に動作しますが、私は周りを見回して、それについては何も見つかっていないログイン機能他の機能でアクション[SCENE_Name]を呼び出す方法?
の内側にそれを呼び出すことはできません。 それは不可能なのか、私はちょうど何かを見逃したことがありますか?
async login(email, pass) {
email = this.state.email,
pass = this.state.password
if(email != '' && pass != '')
{
try {
await this.props.firebase.auth()
.signInWithEmailAndPassword(email, pass);
//this.props.navigator.push({ screen: 'Chat' });
Actions.home();
console.log("Logged In!");
} catch (error) {
console.log(error.toString())
}
}
else if (true) {
this.popup.alert('The Input fields havent been properly filled in');
}
}
はいActions.home()はログイン機能では機能しません –
ログに出力が表示されますか? –
エラーメッセージがなく、Actions.home()メソッドに達してから停止します。 –