私はReact Native 0.48.4を使用しています。 次のTextInputの選択方法は?私は「refが」あなたのTextInputコンポーネントにコールバックする変数を割り当て、次のテキストを移動するには反応ネイティブの入力
まず、このコードの下に、それは私のために働いていない
<TextInput
returnKeyType={'next'}
secureTextEntry={true}
style={styles.textBox}
keyboardType = 'number-pad'
maxLength = {1}
autoFocus={true}
blurOnSubmit={true}
onSubmitEditing={(event) => {
this.refs.SecondInput.setFocus();
}}
onChange={this.onChangePassCode}
onChangeText={(passCode) => this.setState({passCode})}
/>
<TextInput
ref='SecondInput'
returnKeyType='next'
secureTextEntry={true}
style={styles.textBox}
keyboardType = 'number-pad'
maxLength = {1}
blurOnSubmit={false}
onChange={this.onChangePassCode}
onChangeText={(passCode) => this.setState({passCode})}
/>
変える 'this.refsで直接操作を検索するには、この格納された変数に「焦点を()」と呼びます。これは 'this.refs.SecondInput.focus();に変更されました。 – bennygenel
は' this.refs.SecondInput.focus(); 'になります。 –
'this.refs.SecondInput.focus();に変更されました。 'それはまた動作しません – achu