admin管理员组

文章数量:1345290

I have a Material-Ui TextField handled with Formik. Input value (string) is converted to number on Input Change.

My problem is that when the value number zero passes, it's considered as a false value and renders an empty string. I want it to get 'number zero' showing in TextField.

If I removes TextField value condition ( value || ' ' ), It will give me a warning message below.

Warning: `value` prop on `input` should not be null. Consider using an empty string to clear the ponent or `undefined` for uncontrolled ponents.

How can I work around with it ?

input.js

const Input = ({
  classes,
  icon,
  styleName,
  field: { name, value, onBlur },
  form: { errors, touched, setFieldValue },
  ...props
}) => {
  const errorMessage = getIn(errors, name);
  const isTouched = getIn(touched, name);

  const change = (e, name, shouldValidate) => {
    e.persist();
    const inputValue = e.target.value;
    let value;

      if (inputValue !== '') {
        value = isNaN(inputValue) ? inputValue : parseInt(inputValue, 10);
      } else {
        value = null;
      }

    return setFieldValue(name, value, shouldValidate);
  };

  return (
    <TextField
      name={name}
      value={value || ''}
      onChange={e => change(e, name, true)}
      onBlur={onBlur}
      {...props}
      className={classes[styleName]}
      helperText={isTouched && errorMessage}
      error={isTouched && Boolean(errorMessage)}
      InputProps={{
        startAdornment: (
          <InputAdornment position="start">
            <Icon
              name={icon}
              width="30"
              height="30"
              viewBox="0 0 30 30"
              fill="none"
            />
          </InputAdornment>
        ),
      }}
    />
  );
};

I have a Material-Ui TextField handled with Formik. Input value (string) is converted to number on Input Change.

My problem is that when the value number zero passes, it's considered as a false value and renders an empty string. I want it to get 'number zero' showing in TextField.

If I removes TextField value condition ( value || ' ' ), It will give me a warning message below.

Warning: `value` prop on `input` should not be null. Consider using an empty string to clear the ponent or `undefined` for uncontrolled ponents.

How can I work around with it ?

input.js

const Input = ({
  classes,
  icon,
  styleName,
  field: { name, value, onBlur },
  form: { errors, touched, setFieldValue },
  ...props
}) => {
  const errorMessage = getIn(errors, name);
  const isTouched = getIn(touched, name);

  const change = (e, name, shouldValidate) => {
    e.persist();
    const inputValue = e.target.value;
    let value;

      if (inputValue !== '') {
        value = isNaN(inputValue) ? inputValue : parseInt(inputValue, 10);
      } else {
        value = null;
      }

    return setFieldValue(name, value, shouldValidate);
  };

  return (
    <TextField
      name={name}
      value={value || ''}
      onChange={e => change(e, name, true)}
      onBlur={onBlur}
      {...props}
      className={classes[styleName]}
      helperText={isTouched && errorMessage}
      error={isTouched && Boolean(errorMessage)}
      InputProps={{
        startAdornment: (
          <InputAdornment position="start">
            <Icon
              name={icon}
              width="30"
              height="30"
              viewBox="0 0 30 30"
              fill="none"
            />
          </InputAdornment>
        ),
      }}
    />
  );
};
Share Improve this question asked Nov 16, 2019 at 4:58 JiaahJiaah 8442 gold badges14 silver badges30 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3

I experienced a situation like this in some of our projects.

This isn't specific to Material-UI but to react.

To work around this, just set the initial value to an empty string ''.

So far we're fine with setting the value to an empty string since it's the default event.target.value of input type number when it's empty.

See: https://codesandbox.io/s/affectionate-stonebraker-cgct3

The suggested solution did't work for me. Number 0 is falsy. so it renders an empty string. I resolved it with this approach.

const input = value === 0 || value ? value : '';
  return (
    <TextField
      name={name}
      value={input}
      ...
    />
  );

本文标签: javascriptMaterialui Textfield null value for zeroStack Overflow