2

我们如何在 react admin 中设置 ArrayInput 的默认值?我试过没有成功

<ArrayInput source="to" defaultValue={[{email: 'test@example.com'}]}>
    <SimpleFormIterator>
        <TextInput source="email" {...rest} />
    </SimpleFormIterator>
</ArrayInput>
4

1 回答 1

2

您的代码似乎是正确的。

我在 CodeSandbox 中重现了该问题,并为您填写了一个问题:

编辑:该问题已得到解决,可在 2.2.0 版本中使用,如以下沙箱所示:https ://codesandbox.io/s/4z383v368x

于 2018-07-19T16:21:40.423 回答