ant design pro启动后默认是登陆后的页面,求问怎么设置它是登陆页,改权限guest后登陆后跳转有问题网上的解决方案是export function getAuthority() {// return localStorage.getItem('antd-pro-authority') || ['admin', 'user'];return localStorage.getItem('antd-pro-authority') || 'guest'; //修改这里为guest.}export function setAuthority(authority) {return localStorage.setItem('antd-pro-authority', authority);}试过之后发现 登陆成功后跳转不了,只有admin的时候才可以跳转、1.方案一,配置路由,设置首页为登录页2.方案二,在首页里做判断,未登录跳转到登录页这两种方案不知道大神有没有具体写的代码可以提供
添加回答
举报
0/150
提交
取消