【React+Antd】 多选下拉框禁止输入

Esai-Z / 2023-05-17 / 原文

<Select
  options={}
  onChange={provinceChange}
  allowClear
  mode="multiple"//
  showSearch={false}
  maxTagTextLength={4}
/>

mode设置为多选,multiple配合showSearch可以实现禁止选择,mode设置为tags配合showSerach不能实现禁止输入