是否可以为 List 组件定义自定义传奇?我的意思是,当列表被挂载时,它RA/CRUD_GET_LIST
会自动调度动作(由于从父组件传递的道具),从服务器获取数据。我想RA/CRUD_GET_LIST
用不同的行为定义我自己的,这可能吗?
列表组件:
<List
{...this.sanitizeProps(this.props)}
filter={{ userId: userId }}
title="History"
perPage={10}
>
<DataGridComponent />
</List>
随着sanitizeProps
我过滤我需要的道具并传递其他道具。
我需要等待的资源是:<Resource name="user" />
我userId
从我的自定义减速器中得到:
const mapStateToProps = state => ({
userId: state.userReducer.user.id
});