reactjs react-select初始数据

时间:2017-02-17 20:44:49

标签: reactjs react-select

是否可以为react-select(lib)设置初始标签? 我尝试使用值设置初始标签,然后单击显示选项。

没有找到解决方案

1 个答案:

答案 0 :(得分:0)

您应该从构造函数设置初始数据。看看这个。

const genders = [{label:'Male',id:'1'},{label:'Female',id:'2'}];

constructor(props) {
super(props);
this.state = { gender: 1 };

}

important =你必须为初始数据设置id值。

和组件

<Select simpleValue options={genders} value={this.state.gender} onChange={value => this.genderChange(value)} />