使用react

时间:2017-09-02 07:37:59

标签: reactjs react-select

我正在使用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};)是相同的。

我该怎么做?

谢谢

0 个答案:

没有答案