如何访问 admin-on-rest 的自定义工具栏中的数据?
How can I access the data in custom toolbar for admin-on-rest?
我使用 admin-on-rest。我为用户数据编辑页面制作了一个自定义工具栏。如何在此工具栏内访问用户数据?
您可以使用 redux-form selectors 来检索完整表单或仅检索部分字段。
为此,您必须使用 redux connect
将自定义工具栏设为连接组件,并从 mapStateToProps
函数中调用选择器。
我使用 admin-on-rest。我为用户数据编辑页面制作了一个自定义工具栏。如何在此工具栏内访问用户数据?
您可以使用 redux-form selectors 来检索完整表单或仅检索部分字段。
为此,您必须使用 redux connect
将自定义工具栏设为连接组件,并从 mapStateToProps
函数中调用选择器。