蚂蚁多选选项,但从搜索栏中删除条目。

问题描述 投票:0回答:1

我在使用蚂蚁设计的选择功能。尤其是多个选择。

我想保持我的选择不变,但我想把搜索栏中的条目去掉。

https:/imgur.comam1XLQJa

在图像中,我想突出显示下拉菜单中的选择,但要去掉红色突出显示的条目。

这是我使用的代码。

https:/codesandbox.iossad-glad-eunf6?file=index.js。

import React from "react";
import ReactDOM from "react-dom";
import "antd/dist/antd.css";
import "./index.css";
import { Select, Radio } from "antd";

const { Option } = Select;

const children = [];
for (let i = 10; i < 36; i++) {
  children.push(<Option key={i.toString(36) + i}>{i.toString(36) + i}</Option>);
}

function handleChange(value) {
  console.log(`Selected: ${value}`);
}

class SelectSizesDemo extends React.Component {
  state = {
    size: "default"
  };

  handleSizeChange = e => {
    this.setState({ size: e.target.value });
  };

  render() {
    const { size } = this.state;
    return (
      <>
        <Select
          mode="multiple"
          size={size}
          placeholder="Please select"
          onChange={handleChange}
          style={{ width: "100%" }}
        >
          {children}
        </Select>
      </>
    );
  }
}

ReactDOM.render(<SelectSizesDemo />, document.getElementById("container"));

我试着在Select标签里面设置value={[]},但它也擦掉了选择。

我该怎么做呢?

javascript reactjs antd multi-select
1个回答
0
投票

您可以简单地应用该样式。

<Select
    mode="multiple"
    size={size}
    className="dont-show" // <--- apply class to provide style only specific to this select
    placeholder="Please select"
    onChange={handleChange}
    style={{ width: "100%" }}
>
    {children}
</Select>

.dont-show .ant-select-selection-item {
  display: none !important;
}

WORKING DEMO :

Edit peaceful-wescoff-yvxs1

© www.soinside.com 2019 - 2024. All rights reserved.