我正在使用react-select(https://github.com/JedWatson/react-select)来搜索异步数据。
这是代码:
const getOptions = (input) => {
return fetch(`/users/${input}.json`)
.then((response) => {
return response.json();
}).then((json) => {
return { options: json };
});
}
<Select.Async
name="form-field-name"
value="one"
loadOptions={getOptions}
/>
我想在一个页面中使用两个选择框。但是我在两个组件中获得相同的数据,因为选项(return {options:json};)是相同的。
我该怎么做?
谢谢