为什么没有在反应中设置下拉列表的初始值?
Why initial value of dropdown not set in react?
你能告诉我为什么我的初始值没有在反应中设置吗?我正在使用react-final-form
这是我的代码
https://codesandbox.io/s/frosty-star-1qcw3
我的初始值打印在控制台中,但未在下拉列表中设置
API link 反应最终形式
https://final-form.org/docs/react-final-form/examples
const [options, setOptions] = useState([]);
useEffect(() => {
console.log("urllll");
// (async () => {
// setOptions(await getDropDowOptions(dataKey));
// })();
console.log(options);
console.log(value);
(() => {
setOptions(getDropDowOptions(dataKey));
})();
}, []);
const getDropDowOptions = dataKey => {
console.log(dataKey);
switch (dataKey) {
case "abc":
console.log("========");
const slots = [
{
key: "9-13",
label: "09:00-13:00",
value: "09:00-13:00"
},
{
key: "13:00-16:00",
label: "13:00-16:00",
value: "13:00-16:00"
},
{
key: "16:00-19:00",
label: "16:00-19:00",
value: "5000"
}
];
return slots;
}
};
你能告诉我为什么我的初始值没有在反应中设置吗?我正在使用react-final-form
这是我的代码
https://codesandbox.io/s/frosty-star-1qcw3
我的初始值打印在控制台中,但未在下拉列表中设置
API link 反应最终形式
https://final-form.org/docs/react-final-form/examples
const [options, setOptions] = useState([]);
useEffect(() => {
console.log("urllll");
// (async () => {
// setOptions(await getDropDowOptions(dataKey));
// })();
console.log(options);
console.log(value);
(() => {
setOptions(getDropDowOptions(dataKey));
})();
}, []);
const getDropDowOptions = dataKey => {
console.log(dataKey);
switch (dataKey) {
case "abc":
console.log("========");
const slots = [
{
key: "9-13",
label: "09:00-13:00",
value: "09:00-13:00"
},
{
key: "13:00-16:00",
label: "13:00-16:00",
value: "13:00-16:00"
},
{
key: "16:00-19:00",
label: "16:00-19:00",
value: "5000"
}
];
return slots;
}
};