我正在尝试设置size
本机 HTML 选择元素的属性。这决定了在多选中显示多少选项(即垂直高度)。我在文档中看不到这个道具。
<Field
component={Select}
disabled={props.disabled}
name={props.name}
multiple
native
size={props.size || 4}
>
{props.children}
</Field>
该size
属性在这里无效,似乎默认为四个选项,但我想要更多。
Field
示例代码中的组件来自formik并且Select
来自formik-material-ui。