2017-02-20 36 views
0

Для этого "onPress = {this.onPressButton.bind (this)}" заставляет мое приложение терпеть неудачу?React Native undefined не является объектом (оценка 'this.onPressButton.bind')

Что я могу сделать, чтобы исправить это. Я полагаю, что это что-то связано с (этим) превращением в не привязанность или что-то еще?

Я компонент под названием Войти визуализируемый:

export default class Login extends Component { 

constructor(props) { 
    super(props); 
    this.state = { 
     id:'login' 
    } 
} 

render() { 
    return(
     <KeyboardAvoidingView behavior="padding" style={style.container}> 
      <View style={style.logoContainer}> 
       <StatusBar barStyle="light-content" /> 
       <Image style={style.logo} source={require('../../image/Octocat.png')} /> 
       <Text style={style.logoText}> A Github app using React Native by{"\n"} Thomas Charlesworth</Text> 
      </View> 
      <View style={style.formContainer}> 
       <LoginForm /> 
      </View> 
     </KeyboardAvoidingView> 
    ); 
} 
} 

И форма Войти компонент:

export default class LoginForm extends Component { 

onPressButton(){ 
    this.props.navigator.push({ 
     id: 'splash', 
     passProps: { 
     // Your Props 
     } 
    }) 
} 

render() { 
    return(
     <View style={style.container}> 
      <TextInput 
       style={style.input} 
       placeholder="Username" 
       placeholderTextColor="rgba(255,255,255,0.5)" 
       returnKeyType="next" 
       autoCapitalize="none" 
       autoCorrect={false} 
       onSubmitEditing={()=> this.passwordInput.focus()} 
      /> 
      <TextInput 
       style={style.input} 
       secureTextEntry 
       placeholder="Password" 
       placeholderTextColor="rgba(255,255,255,0.5)" 
       returnKeyType="go" 
       ref={(input) => this.passwordInput = input} 
      /> 
      <TouchableOpacity 
       style={style.buttonContainer} 
       onPress={this.onPressButton.bind(this)} 
      > 
       <Text style={style.buttonText}> 
        LOGIN 
       </Text> 
      </TouchableOpacity> 
     </View> 
    ); 
} 
} 
+0

Вы определили этот метод 'onPressButton' ?? –

+0

Я сделал редактирование, пожалуйста, обратитесь к этому. Я определил метод да. Который останавливает ошибку, но когда я нажимаю на кнопку, я получаю: undefined не является объектом (оценка «this.props.navigator.push») –

ответ

1

Написать это так:

Передайте функцию из родительского компонента:

<LoginForm update={this.update.bind(this)}> 

navigate(data){ 
    this.props.navigator.push({data}); 
} 

В Детский компонент:

onPressButton(){ 
    let data = { 
     /*data*/ 
    } 
    this.props.navigate(data); 
} 
+0

Итак, какое решение? –

+0

onPressButton() { this.props.navigator.push ({ ID: 'splash' }) } не работает –

+0

Cheers! Огромное спасибо: D –