我想查看购买 React Admin 的详细信息

I want to see the detail of the purchase React Admin

我有一个购物清单,但我想在同一个清单中查看详细信息。用什么元素可以让触摸箭头显示细节

List

<List {...props} >
        <Datagrid rowClick="edit" expand={<ItemsProductos />}>
            <TextField source="id" />   
            <TextField source="numero" label="Numero Comprobante" />
            <DateField source="fecha" />
        </Datagrid>
 </List>

React-admin 会将当前的 record 传递给用作 expand prop 的组件,因此您可以按如下方式编写 <ItemProductos> 组件:

const ItemProductos == ({ record }) => (
    <span>{record.fecha}</span>
);

这在 react-admin 文档中有记录:

https://marmelab.com/react-admin/List.html#expand