我想在React Native中设置textInput的最小长度,但是我在React Native教程中找不到最小长度的事件。
有什么方法可以设置textInput的最小长度吗?
非常感谢。
答案 0 :(得分:0)
onChangeText()
函数,您可以执行以下操作:
const maxLengthInput = set your limit // 60;
const currentLength=this.state.text.length;
this.setState({
textLength: maxLengthInput - currentLength,
text:inputValue
});
因此,您可以在组件中使用the this.state.textLength
。
答案 1 :(得分:0)
如所评论,
添加一个onChange处理程序并验证最小长度的值
onChange
处理程序以进行自定义验证。以下代码还实现了以下行为:
minLength
为6。
class MyInput extends React.Component {
constructor(props) {
super(props)
this.state = {
value: '',
isValid: true,
hasFocus: false
}
}
onChange(event) {
const value = event.target.value;
const isValid = value.length >= (this.props.minLength || 0) ||value === ''
this.setState({ value, isValid })
}
onClick() {
this.setState({ hasFocus: true })
}
onBlur() {
this.setState({ hasFocus: false })
}
render() {
const { isValid, hasFocus } = this.state;
return (
<div>
<input
type='text'
className={ isValid || hasFocus ? '' : 'error'}
onChange={ this.onChange.bind(this) }
onClick={ this.onClick.bind(this) }
onBlur={ this.onBlur.bind(this) }
/>
</div>
)
}
}
ReactDOM.render(<MyInput minLength={6} />, document.querySelector("#app"))
.error {
border: 1px solid red;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<div id="app"></div>
答案 2 :(得分:0)
maxLength道具现在是React Native的一部分: 在您的代码中使用以下内容。
<TextInput value={this.state.text} maxLength={4} />
你很好!
答案 3 :(得分:0)
您可以像下面一样使用_onPress
_onPress = () => {
if (this.state.value.length < 5) {
Alert.alert('Alert', 'Please type more then 5 words');
return;
}
this.props.onPress(this.ref._lastNativeText);
this.ref.setNativeProps({ text: '' });
}