React Native Expo Snack にてFirebaseを使ったときのハマり Device: (865:668) undefined is not an object (evaluating 't.stack.replace')
2048 ワード
Device: (865:668) undefined is not an object (evaluating 't.stack.replace')
Expo Snack 特有のエラーでした。
index.js
handleSubmit = () => {
firebase
.auth()
.createUserWithEmailAndPassword(this.state.email, this.state.password)
.then(user => {})
.catch(error => {
- console.log(error);
+ console.log(error.code);
+ console.log(error.message);
});
};
Author And Source
この問題について(React Native Expo Snack にてFirebaseを使ったときのハマり Device: (865:668) undefined is not an object (evaluating 't.stack.replace')), 我々は、より多くの情報をここで見つけました https://qiita.com/harapeko-wolf/items/228334b1e5cce008981a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .