我的yii2项目遇到了麻烦。我使用了RBAC授权,它运行正常。
在下面的代码中, '@'
表示已登录的用户。它位于 SiteController
- 不使用RBAC。
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'actions' => ['login', 'error', 'confirm', 'changepassword', 'thongbao', 'request-password-reset', 'reset-password', 'distance',
'nhatram', 'updatediaban', 'leas', 'thongkell', 'thongkells', 'nodetb', 'xemnode', 'bcthang','mailcb'
],
'allow' => true,
],
[
'actions' => ['logout', 'index', 'leaslineall', 'up'],
'allow' => true,
'roles' => ['@'],
],
],
],
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'logout' => ['post'],
],
],
];
}
所以我想仅为名为 "Superadmin"
我该怎么办?谢谢!
答案 0 :(得分:1)
你试过这个参考吗?
这是关于您的RBAC授权非常详细
https://www.yiiframework.com/wiki/771/rbac-super-simple-with-admin-and-user