【发布时间】:2020-01-20 18:12:13
【问题描述】:
我在使用 final-form 开发 Auto complete 时遇到错误
必须将渲染道具、渲染函数指定为子级,或将组件道具指定给 Field(auto)
我从这个链接获得帮助 https://trejgun.github.io/articles/bindings-for-using-final-form-with-material-ui-autocomplete/
但是当我实现上面的代码时,我遇到了错误
这是我的代码 https://codesandbox.io/s/relaxed-breeze-hv58o
<Field
name="auto"
multiple={true}
component={AutoCompleteWrapper}
placeholder="First Name"
options={[{ label: "The Shawshank Redemption", values: 1994 }]}
/>
【问题讨论】:
标签: javascript reactjs material-ui react-final-form final-form