我添加了自己的自定义路线。在自定义路由中,我正在加载我自己的自定义组件,我想使用admin.state.loading标志在我的组件加载它的数据时显示一个微调器。例如,我从自定义路径中的组件的componentWillMount调用我的restClient:
componentWillMount() {
restClient(GET_LIST, `facilityuserconversations/${username}`, {
filter: {},
sort: {field: 'updated', order: 'Desc'},
pagination: {page: 1, perPage: 9999},
})
.then(result => {
// I'd like to see a loading spinner while I wait on these results.
});
}
如何在我的休息结果加载时显示admin-on-rest微调器?
我目前正在使用:
"admin-on-rest": "^1.2.3"
"react": "~15.5.4",
"react-redux": "~5.0.4",
"react-router": "~4.1.0",
"redux": "~3.6.0",