gpt4 book ai didi

javascript - 自定义 Antd AutoComplete 以将 {children} 用于数据源和输入

转载 作者:行者123 更新时间:2023-12-01 01:01:44 25 4
gpt4 key购买 nike

使用 {children} 方法时,我可以自定义 1) 数据源和 2) 输入吗?

文档说:

children (for customize input element)
customize input element
HTMLInputElement / HTMLTextAreaElement / React.ReactElement

children (for dataSource)
Data source for autocomplete
React.ReactElement / Array

我使用其中之一使其工作,但不能同时使用两者。真的很烦人,没有 renderOption 属性或类似的东西......

最佳答案

如果你想同时使用两者,你​​可以这样写:

const results = dataSource.map(x => (
<Select.Option key={x} {/* props you want */}>{x}</Option>
))

<AutoComplete dataSource={results}>
<Search placeholder="Search..." />
</AutoComplete>

关于javascript - 自定义 Antd AutoComplete 以将 {children} 用于数据源和输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56007906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com