測試人員測試我form里面一個select的時候,發現只能搜索英文和數字,不能搜中文
后來找到原因,treeNodeFilterProp字段默認是velue,我value里面是id,當然搜不到中文啦
把treeNodeFilterProp改為”title“即可搜索到中文
<TreeSelect showSearch style={{ width: '90%',marginRight:'8px' }} value={value} dropdownStyle={{ maxHeight: 400, overflow: 'auto' }} placeholder="請選擇技能組" defaultValue={defaultValue} allowClear multiple ={this.props.multiple} treeDefaultExpandAll onChange={onChange} disabled={isDisabled} treeNodeFilterProp="title" > {treeNodeList} </TreeSelect>