zoukankan      html  css  js  c++  java
  • yii2 [行为] behaviors 拦截器

    yii2 拦截器

        在控制器中可以自定义对action的拦截器,拦截器需要继承 yiiaseActionFilter

       参考代码:

          

    class BaseUserAuthorizeFilter extends ActionFilter
    {
        public $rules = [];
        public $actions = [];
    
        /**
         * @param yiiaseAction $action
         * @return bool
         */
        public function  beforeAction($action)
        {
            .....
            return true;
        }
    
        public function afterAction($action, $result)
        {
            
            return $result;
        }
    
    
    
    }

    控制器配置拦截器:

         其中 UserAuthorizeFilter 为自定义拦截器 。

      关键配置:

           only :仅对数组中action对应的请求地址有效

           except:排除掉数组中action对应的请求地址有效

     public function behaviors()
        {
            return [
                'access' => [
                    'class' => UserAuthorizeFilter::className(),
                   // 'only' => ['index'],
                   // 'except' => ['getlist'],
                    'rules' => [
                        [
                            'actions' => ['error'],
                            'allow' => true,
                        ],
                        [
                            'actions' => ['index'],
                            'allow' => true,
                            'roles' => ['@'],
                        ],
                    ],
                ],
            ];
        }

          

  • 相关阅读:
    SpringBoot-14-MyBatis预热篇,MySQL小结
    SpringBoot-13-插曲之Node文件重命名+自动生成json对象
    八月十九风雨大作
    诉世书
    《仪式》
    珊瑚墓地
    新生
    《应龙》
    《枝·你是树的狂舞》
    golang中使用etcd
  • 原文地址:https://www.cnblogs.com/rhythmK/p/4583893.html
Copyright © 2011-2022 走看看