我遇到react-final-form
的问题,它告诉我我没有通过type=checkbox
,因此无法正确打开包装。我有些困惑,因为在示例中,自定义组件确实将type
传递给了它。可以在下面找到一个实时示例:
https://codesandbox.io/s/9o227yp3q4
我看到的是输入以未定义状态开始,然后在用户输入时切换为true或false。从不确定的状态开始,我认为是导致问题的原因,但我并不乐观。
我收到的错误消息是
Warning: You must pass `type="checkbox"` prop to your Field(attendees[0].isHost) component. Without it we don't know how to unpack your `value` prop - "undefined".
答案 0 :(得分:0)
我发现我需要在type
上传递<Field />
,以便react-final-form
可以解压值并正确应用它们。
export const CustomField: React.SFC<Props> = ({
label,
name,
placeholder,
type
}) => (
<Field name={name} type={type}>
{({ input, meta }) => (
<div>
<StyledLabel htmlFor={name}>{label}</StyledLabel>
<StyledInput
{...input}
id={name}
placeholder={placeholder}
type={type}
/>
{meta.error && meta.touched && <span>{meta.error}</span>}
</div>
)}
</Field>
)