import React from 'react' import { List,Datagrid,TextField,EditButton,DeleteButton,BooleanField } from 'react-admin' const MyComponent = () => ( <List resource="t_geyao_person"> 我是测试 </List> ); const RComponentList = () => { return <List resource="t_geyao_person" debounce={1000} disableAuthentication={false}> <Datagrid> <TextField source='id'></TextField> <TextField source='name'></TextField> <TextField source='sex'></TextField> <TextField source='salary'></TextField> <BooleanField source='status'></BooleanField> </Datagrid> </List> } export default RComponentList
要求用户进行身份验证 - 任何匿名访问都会将用户重定向到登录页面。