将props发送到数字格式 - Material UI TextField

IT技术 reactjs material-ui
2021-05-16 13:42:20

我想创建一个 TextField 元素来处理数字字段。我想动态处理这个组件,这样它不仅可以帮助我管理信用卡格式、电话等。我使用 react-number-format 库的方式与 Material-UI 示例相同。我试图通过props“前缀”和“格式”发送而没有有利的结果。我想知道我应该如何发送这些属性,如果我有办法的话。提前致谢 !

function NumberFormatCustom(props) {
  const { inputRef, onChange, ...other } = props;

  return (
    <NumberFormat
      {...other}
      getInputRef={inputRef}
      onValueChange={values => {
        onChange({
          target: {
            value: values.value
          }
        });
      }}     
      thousandSeparator={","}
      decimalSeparator={"."}
      isNumericString
      prefix={props.prefix} //"$"      
    />
  );
}

NumberFormatCustom.propTypes = {
  inputRef: PropTypes.func.isRequired,
  onChange: PropTypes.func.isRequired
};

class NumberTextField extends Component {
  state = {
    numberformat: this.props.value
  };

  handleChange = event => {
    const targetField = this.props.name;
    const targetValue = event.target.value;
    this.setState({
      ...this.state,
      numberformat: targetValue
    });
    this.props.updateCurrentUserFieldsOnChange(targetField, targetValue);
  };

  render() {
    const { fullWidth, label, name, readOnly, prefix } = this.props;
    return (
      <Fragment>
        <TextField
          fullWidth={fullWidth ? fullWidth : true}
          label={label ? label : "react-number-format"}
          name={name}
          value={this.state.numberformat}
          onChange={this.handleChange}          
          InputProps={{
            inputComponent: NumberFormatCustom,
            readOnly: Boolean(readOnly),
            prefix: prefix                        
          }}
        />
      </Fragment>
    );
  }
}
2个回答

您必须使用 customInput props,这将允许您集成 material-ui 的样式。您还可以通过几个props来控制你想要的面具。另外,如果你想要一个前缀,只需使用前缀props。千分隔符是一个布尔值,但默认情况下数字用逗号分隔,如果你喜欢空格,你只需要像我的例子一样添加它

  import NumberFormat from 'react-number-format';

  import TextField from 'material-ui/TextField';

      <NumberFormat
        {...props}
        value={value}
        name={name}
        mask={mask}
        customInput={TextField}
        prefix={'$'}
        format={format || null}
        type="text"
        thousandSeparator={thousandSeparator ? ' ' : null}
        onValueChange={({ value: v }) => onChange({ target: { name, value: v } })}
      />

如果您想将您的文本字段格式化为数字格式,您可以将您的数字格式添加到材料 ui 的 FormControl 字段中,如下面的代码。

<FormControl focused className="col " variant="outlined">
   <InputLabel className="mText">your label</InputLabel>
   <NumberFormat customInput={TextField} 
     variant="outlined"
     thousandSeparator={true} 
     onChange={handleChange}
     autoComplete="off"/>
</CustomFormControl>

最好的祝福。