0

我有一个文本输入,怎么可能只允许低于 9999.99 的数字?

   <TextInput
                    autoFocus
                    style={styles.inputStyle}
                    placeholder="0.00"
                    keyboardType="numeric"
                    maxLength={9}
                    autoCapitalize="none"
                    placeholderTextColor={Colors.white}
                    underlineColorAndroid={Colors.transparent}
                    value={billAmount}
                    onChangeText={this.handleTextChange}
                    selection={{start: cursor, end: cursor}}
                  />

这是handleTextChange函数:

handleTextChange = (text) => {
    const { cursor, billAmount } = this.state
    let newText
        newText = text.replace(/[^1-9]/g, '')
        this.setState({
          billAmount: newText
        })
}
4

1 回答 1

2

您的正则表达式还会删除任何点 ( .)。这将导致您丢失任何浮动。如果你想启用浮动,你需要添加.到你的正则表达式。

然后您需要做的就是解析您的文本以浮动并检查它是否低于最大浮动。

样本

handleTextChange = (text) => {
    const newAmount = parseFloat(text.replace(/[^1-9.]/g, ''));
    this.setState({
      billAmount: newAmount > 10000 ? '9999.99' : newAmount + ''
    });
  }
于 2018-07-13T10:39:40.587 回答