3

我在 a 中使用的自定义 React 组件react-final-form <Field>的 value 属性为int?. 它的值可以是整数或空值。但是,当我使用组件的propnull为该字段组件的值设置初始值时,会将 转换为空字符串。initialValues<Form>react-final-formnull''

我知道我可以通过创建一个检查''并将其转换为的包装器组件轻松解决此问题null,但是还有其他更简洁的方法来解决这个问题吗?或者这是一个库错误?

https://codesandbox.io/s/yq00zxn271

import React from "react";
import { render } from "react-dom";
import { Form, Field } from "react-final-form";

const IntField = (props) => (
  <span>
    <input type="text" value={props.value === null ? 0 : props.value} />
    <pre>
      <b>props.{props.name} === null</b> : {(initialValues[props.name] === null).toString()}
      <br />
      <b>props.value === null</b> : {((isNull) => (<span style={{ color: isNull ? 'green' : 'red' }}>{isNull.toString()}</span>))(props.value === null)}
      <br />
      <b>props: </b>{JSON.stringify(props)}
      <br />
      <b>initialValues: </b>{JSON.stringify(initialValues)}
    </pre>
  </span>
)

const onSubmit = values => {
  console.log('submitted')
}

const initialValues = { someInteger: null };

const App = () => (
    <Form
      initialValues={initialValues}
      onSubmit={onSubmit}
      render={() => (
        <form>
          <label>Some Integer:</label>&nbsp;
          <Field name="someInteger">
            {({ input, meta }) => (
              <IntField {...input} />
            )}
          </Field>
        </form>
      )}
    />
);

render(<App />, document.getElementById("root"));
4

2 回答 2

7

你可以使用<Field>道具allowNull吗?关闭此行为,以便将空值按原样传递给子组件。

像这样:

<Field name="someInteger1" allowNull={true}>
  {({ input, meta }) => (
    <IntField {...input} />
  )}
</Field>

https://codesandbox.io/s/n4rl2j5n04

(回答我自己的问题作为对其他人的帮助,因为我花了一段时间才弄清楚发生了什么以及如何解决它)

于 2018-06-22T21:55:53.323 回答
6

如果你和我一样,正在寻找一种方法来防止最终形式取消定义空字符串,你可以使用parse和 identity 函数:

<Field
  name="myField"
  parse={x => x}
  component={TextField}
/>
于 2020-05-08T16:22:47.557 回答