React Selectを使用してurl
おり、param としてに渡したいと思いloadOptions
ます。だから、私は次のようになります:
<Select.Async {...input} loadOptions={ getOptions(url) }/>
これは私のものgetOptions
です:
const getOptions = ((input, callback) => {
return fetch("http://reqres.in/api/users") // Get my url HERE
.then((res) => {
return res.json();
}).then((json) => {
return {options: json.data};
});
});
とにかくこれを達成する方法はありますか? 前もって感謝します。
解決 :
最も簡単な解決策は次のようになります。
<Select.Async {...input} loadOptions={ getOptions.bind(url) }/>
this
URLの代わりに入れますgetOptions
お役に立てれば ;)