我试图保存我的用户已登录的事实,然后在他的管理页面上重定向他,但是当我使用 await 时,我收到了这个错误:
await 是保留字 (101)
另一件事,一旦我的用户注册,我想将他发送到一个新页面,而不是“幻灯片页面”,我们可以通过右上角的箭头返回。我怎样才能做到这一点?
这是我的代码:
login(){
firebase.auth().signInWithEmailAndPassword(this.state.emailLogin,
this.state.passwordLogin).then((user) => {
// Send the user to the next step
try {
await AsyncStorage.setItem('@MySuperStore:key', 'I like
to save it.');
} catch (error) {
// Error saving data
}
const { navigate } = this.props.navigation;
navigate('Admin');
}).catch(function(error) {
var errorCode = error.code;
var errorMessage = error.message;
if (errorCode === 'auth/wrong-password') {
alert('Wrong password.');
} else {
alert(errorMessage);
}
console.log(error);
});
}
提前感谢您的帮助。