在select2下拉列表中的select上出现错误我正在对国家和城市下拉列表使用react-select2:
以下是代码:
<Select2
name="country"
ref={this.state.country}
value={this.state.country}
data={
this.props.countries ? this.props.countries.map(e => {
return {
id: e.Id,
text: e.Name,
};
})
:
[]
}
options={
{
dropdownParent: '.dropdown-country-field'
}
}
onChange={(e) => {
this.setState({
country: e.target.value
})
this.props.getAllCities(this.state.country);
}}
/>