-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
关于权限管理 #384
Comments
not too bad! |
可以参考rbac https://github.com/onury/accesscontrol 期待最佳实践 |
ooo~ |
资源的权限要怎么设计呢 |
为什么要拉取全部?直接从后台拉取菜单的时候,返回权限有的列表不就可以了吗? |
菜单权限应该是根据登录用户返回对应能操作的菜单集合的。页面权限应该只做拦截。 资源的权限几乎都是对于按钮的显示与隐藏的控制,可以在antd Button组件上做进一步的封装,加入permissionName的验证,其他api不变。 我在楼主的架子上对权限进行了修改,以及一些常用组件的深度封装,希望没有侵犯到作者的权益。 |
我也凑个热闹, |
想要在页面内根据权限控制一些按钮的显隐,一般是怎么做呢? |
@mineralres localstorage存下角色值,放model里,页面取值。接口再做下鉴权 |
@superlbr 明白了,相当于是自己根据具体的权限来控制。 antd admin有计划实现一个类似menu权限控制一样的“官方定义”吗? 我怕自己写了之后与后续的antd amin版本冲突 |
@mineralres 没什么好顾虑的,本来就没有一劳永逸的设定 |
[umi-plugin-access] https://umijs.org/zh-CN/plugins/plugin-access |
权限的设计
页面访问权限
页面访问与菜单,面包屑导航,路由紧密联系,流程如下:
另一方面,对于页面的访问限制
app.js
中通过pathname
匹配是否有符合的页面权限当然,后端人员需要配合对相应的接口做权限限制
资源操作权限
待补充
部分权限账号:guest 密码:guest
The text was updated successfully, but these errors were encountered: