antdesign-select搜索功能

参考: https://www.jianshu.com/p/2b4bba4cdca4

 

 

         <Select labelInValue onChange={value => loadRemotes(value)}  showSearch  filterOption={(input, option) =>
                  option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0
                }>
                  {brands &&
                    brands.map(item => (
                      <Option key={item.brandId}>
                        {item.brandName}
                      </Option>
                    ))}
                </Select>

 

posted @ 2021-01-12 09:42  小魏code  阅读(2265)  评论(0编辑  收藏  举报