import { useGetList, RadioButtonGroupInput } from 'react-admin';const UserCountry = () = { const { data, isLoading } = useGetList('countries'); // data is an array of { id: 123, code: 'FR', name: 'France' } return ( RadioButtonGroupInput so
import { useGetList, RadioButtonGroupInput } from 'react-admin';
const UserCountry = () => {
const { data, isLoading } = useGetList('countries');
// data is an array of { id: 123, code: 'FR', name: 'France' }
return (
<RadioButtonGroupInput
source="country"
choices={data}
optionText="name"
optionValue="code"
isLoading={isLoading}
/>
);
}
【文章原创作者:韩国高防服务器 http://www.558idc.com/krgf.html 网络转载请说明出处】获取选项时候加载指示器