React Redux Material-UI自动完成

时间:2020-01-09 04:23:47

标签: react-redux material-ui redux-form

在使用redux-form时,我很难从Material-ui Autocomplete中获取值。有人解决了吗?我正在使用material-ui自动完成https://material-ui.com/components/autocomplete/中的确切示例,可以看到列表选项,单击两次后填充它,但是我无法提取实际值,而是返回{{1 }},而不是值。

({ title : 0 })

1 个答案:

答案 0 :(得分:4)

通过将(事件,值)传递给onChange道具来解决。

onChange={(event, value) => console.log(value)}

来自文档;

Callback fired when the value changes.

Signature:
function(event: object, value: T) => void
event: The event source of the callback.
value: null