我正在尝试使用Firebase在我的应用程序中使用电话号码登录,但是登录过程遇到问题。我无法使用Firebase中的电话号码登录,但是如果我使用电话号码注册并重定向到首页,则该网站正常运行。我使用相同的方法登录,但是遇到了TypeError: Cannot read property 'uid' of null
之类的问题,但是我成功获取了所有控制台值。我不知道这是什么问题。但是该错误重复显示了3次,
这是我的代码:
renderLoginButton() {
if (this.props.loading) {
return (
<Spinner size="large" />
);
}
return (
<Button
style={{ alignSelf: 'flex-start' }}
onPress={this.onLoginBtnClicked.bind(this)}
>
Login
</Button>
);
}
onLoginBtnClicked(){
const { contact, password } = this.props;
const error = Validator('password', password) || Validator('contact', contact);
if (error !== null) {
Alert.alert(error);
} else {
console.log('else');
// this.props.loginUser({ contact, password});
const mobileNo = '+91'+contact;
firebase.auth().signInWithPhoneNumber(mobileNo)
.then(confirmResult =>
console.log(confirmResult),
curr = firebase.auth(),
console.log("curr"+JSON.stringify(curr)),
this.setState({ data: curr}),
NavigationService.navigate('Home')
)
.catch(error => console(error.message) );
}
}
CustomDrawerComponent.js
import React, { Component } from 'react';
import { View, Image, Text } from 'react-native';
import { DrawerItems } from 'react-navigation';
import { connect } from 'react-redux';
import { fetchUserDetails } from '../actions';
class CustomDrawerContentComponent extends Component {
state = {
uri: '',
isfailed: ''
}
componentWillMount() {
this.props.fetchUserDetails();
}
componentWillReceiveProps(nextProps) {
let uri = '';
if (nextProps.ProfilePic !== '') {
uri = nextProps.ProfilePic;
this.setState({ uri, isfailed: false });
} else {
uri = '../images/ic_person_24px.png';
this.setState({ uri, isfailed: true });
}
this.setState({ uri });
}
renderProfileImage() {
if (!this.state.isfailed) {
return (
<Image
style={styles.profileImageStyle}
source={{ uri: (this.state.uri) }}
/>
);
}
return (
<Image
style={styles.profileImageStyle}
source={require('../images/ic_person_24px.png')}
/>
);
}
render() {
console.log('Profile Pic :: ', this.props.ProfilePic);
return (
<View style={styles.container}>
{this.renderProfileImage()}
<Text style={styles.textStyle}>
{this.props.name} - {this.props.category}
</Text>
<DrawerItems {...this.props} />
</View>
);
}
}
const styles = {
container: {
flex: 1,
paddingLeft: 10
},
textStyle: {
fontSize: 14,
textAlign: 'left',
color: '#000000'
},
profileImageStyle: {
alignSelf: 'flex-start',
marginTop: 16,
padding: 10,
width: 40,
height: 40,
borderRadius: 75
}
};
const mapStateToProps = state => {
const { userprofile } = state;
return userprofile;
};
export default connect(mapStateToProps, { fetchUserDetails })(CustomDrawerContentComponent);
callStack:
答案 0 :(得分:6)
为什么user
返回为undefined
(甚至是null
)?
您知道有一个已登录用户,您刚刚登录,哎呀,您甚至可以在chrome开发工具中看到该用户对象。
然后为什么它仍返回未定义?有一个直接的答案。
您要获取用户对象之前,该对象已可以使用。
现在,由于几种不同的原因可能会发生这种情况,但是如果您遵循这两个“规则”,您将不会再看到该错误。
规则1:将其移出constructor()
当您遇到类似情况时:
constructor(){
this.userId = firebase.auth().currentUser.uid
}
页面加载时间的一半以上,构造函数将在用户准备就绪之前尝试获取用户,应用程序阻止它,因为页面未完全加载,因此您将尝试访问尚不存在的属性的uid。
页面完全加载后,您现在可以致电获取currentUser.uid
规则2:使其可观察
您可以采用另一种方法,即我们刚才进行的上一次Firebase调用:firebase.auth()。currentUser是同步的。我们可以通过订阅auth observable使其异步。
/**
* When the App component mounts, we listen for any authentication
* state changes in Firebase.
* Once subscribed, the 'user' parameter will either be null
* (logged out) or an Object (logged in)
*/
componentDidMount() {
this.authSubscription = firebase.auth().onAuthStateChanged((user) => {
this.setState({
loading: false,
user,
});
});
}
/**
* Don't forget to stop listening for authentication state changes
* when the component unmounts.
*/
componentWillUnmount() {
this.authSubscription();
}
render() {
// The application is initialising
if (this.state.loading) return null;
// The user is an Object, so they're logged in
if (this.state.user) return <LoggedIn />;
// The user is null, so they're logged out
return <LoggedOut />;
}
}
原始文章:Why does Firebase return undefined
when fetching the uid
?
关于React Native的一个很好的教程将在这里:Getting started with Firebase Authentication on React Native 既然您的代码显示的不是很多,我希望您对问题进行更新以显示更多的代码,以便我可以浏览一下。