-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于菜单权限的问题(动态菜单) #999
Comments
菜单权限,你可以写全局model啊,
这里的user即当前登录者,包含从api获取的信息(例如:name, account, permission, isAdmin, isMaster, ...) 然后在layout就可以获取到权限了呀
|
问题1:,/users和/users/child是两个不同的路由,现在没有这样嵌套监听的概念,我觉得可以监听/users/child,判断是否有数据,没有要再发起一起请求。 |
@dawnChen666 参考实验用例https://github.com/xiaohuoni/umi-antd-pro |
@dawnChen666 参考下 https://github.com/smithyj/manage.yangyj.com |
反正就是绝对不支持动态access和动态routes呗 |
环境:umi@2 + dva + antd
我在使用Menu时遇到点问题,使用嵌套路由
在_layout.js使用了menu,并且连接了model去获取menu数据,访问/users时能正常展现出菜单的,点击菜单访问/users/child时也是能正常展现菜单的,但是刷新/users/child后菜单数据就没了,调试了下,发现_layout.js重新加载,并且由于地址并不是监听的/users,所以没有去获取菜单数据
我有两个问题希望有大神能指点下:
1.subscriptions监听嵌套地址时,不能先监听到/users,执行完相应的方法之后再执行监听/users/child么?
2.动态菜单加载作为大多数后端管理系统会使用到的内容,我看了antd-pro是所有菜单项写死menu.js里,但是每个用户能看到的菜单项如果要求不同的话该怎么处理?现在手头项目是登录之后获取能看到的菜单,然后保存到sessionStorage中,然后加载_layout.js时从sessionStorage里去获取,这样是不是合理?或者有更加合适的处理方式?
The text was updated successfully, but these errors were encountered: