'〈输入
name="location" value={this.state.location} inputProps={{ maxLength: 6, }} //other props />
'我正在使用这个,但它不起作用试过了,但不起作用
1hdlvixo1#
尝试使用onChange回调控制长度:
onChange
const handleChange = (e) => { const { value } = e.target.value; if (value.length > 6) return; this.setState({ ...this.state, location: value }) } <Input name="location" value={this.state.location} onChange={handleChange} />
1条答案
按热度按时间1hdlvixo1#
尝试使用
onChange
回调控制长度: