当React已经在更改select2中呈现时,无法刷新更新

时间:2020-10-04 13:54:31

标签: reactjs jquery-select2 react-select

在select2下拉列表中的select上出现错误我正在对国家和城市下拉列表使用react-select2: enter image description here

以下是代码:

<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);
         }}
        />

0 个答案:

没有答案