前端项目实战壹佰零伍react-admin+material ui-踩坑-react-admin之useNotify

我是歌谣 这里是歌谣的前端笔记小屋 想加入前端巅峰人才交流群私信我

const PostList = () => {
    const notify = useNotify();
    const redirect = useRedirect();

    const onError = (error) => {
        notify(`Could not load list: ${error.message}`, { type: 'error' });
        redirect('/dashboard');
    };

    return (
        <List queryOptions={{ onError }}>
            ...
        </List>
    );
}

行为的通知操作

posted @ 2023-07-29 19:47  前端导师歌谣  阅读(14)  评论(0)    收藏  举报  来源