我想使用React Select在ReactJS中設置我的brandSelect道具的狀態,但是我很困惑如何做到這一點?反應選擇 - 道具的setState
這裏是我當前的代碼:
class VehicleSelect extends React.Component {
constructor(props) {
super(props);
this.state = { brandSelect: ""};
}
render() {
var options = [
{ value: 'Volkswagen', label: 'Volkswagen' },
{ value: 'Seat', label: 'Seat' }
];
return (
<Select
name="form-field-name"
value={this.state.brandSelect}
options={options}
placeholder="Select a brand"
searchable={false}
onChange={}
/>
)
}
};
當選項被選中我想作爲選項選擇的狀態的情況下。
有沒有人知道這是怎麼用React Select完成的,因爲文檔沒有真正涵蓋這個?到目前爲止,我已經嘗試使用onChange支持附加設置狀態的函數,但是這不起作用。