【发布时间】:2019-05-20 17:29:54
【问题描述】:
没有与此标识符对应的用户记录。该用户可能已被删除。
export const createEmployee = ({ email, password}) => {
return (dispatch) =>{`
firebase.auth().createUserWithEmailAndPassword ( email,password )
.then(
firebase.auth().signInWithEmailAndPassword( email,password )
.then(Actions.profile())
)
};
};
【问题讨论】:
-
赶上看看你是否有错误。
.catch(function(error) ... -
没有错误,但感谢帮助我深入挖掘
标签: firebase react-native firebase-authentication