时间:2021-05-25
新建 app\filters\LoggingFilter 继承 yii\base\ActionFilter
LoggingFilter 的功能: 在指定请求的 action 前后各记录一条日志
<?phpnamespace app\filters;use yii\base\ActionFilter;class LoggingFilter extends ActionFilter{ public function beforeAction($action) { parent::beforeAction($action); // To do something printf('This is a logging for %s\beforeAction.%s', $this->getActionId($action), PHP_EOL); return true; } public function afterAction($action, $result) { parent::afterAction($action, $result); // To do something printf('This is a logging for %s\afterAction.%s', $this->getActionId($action), PHP_EOL); return true; }}新建 app\controllers\SystemController
<?phpnamespace app\controllers;use app\filters\LoggingFilter;class SystemController extends \yii\web\Controller{ public function behaviors() { parent::behaviors(); return [ 'anchorAuth' => [ 'class' => LoggingFilter::className(), 'only' => ['test', 'test-one'], // 仅对 'test'、'test-one' 生效 'except' => ['test-one'], // 排除 'test-one' ], ]; } public function actionTestOne() { printf('This is a testing for %s.%s', $this->getRoute(), PHP_EOL); } public function actionTestTwo() { printf('This is a testing for %s.%s', $this->getRoute(), PHP_EOL); } public function actionTest() { printf('This is a testing for %s.%s', $this->getRoute(), PHP_EOL); }}测试
请求 http://yii.test/index.php?r=system/test
This is a logging for test\beforeAction.This is a testing for system/test.This is a logging for test\afterAction.请求 http://yii.test/index.php?r=system/test-one
This is a testing for system/test-one.请求 http://yii.test/index.php?r=system/test-two
This is a testing for system/test-two.总结
Yii 中的 ActionFilter(过滤器)相当于 Laravel 中的 Middleware(中间件),beforeAction 相当于前置中间件,afterAction 相当于后置中间件。
到此这篇关于Yii中特殊行为ActionFilter使用的文章就介绍到这了,更多相关Yii特殊行为ActionFilter使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了YII2框架中behavior行为的理解与使用方法。分享给大家供大家参考,具体如下:YII2中的行为说白了就是对组件功能的扩展,在不改变继承关系的
本文实例讲述了Yii2框架中日志的使用方法。分享给大家供大家参考,具体如下:Yii2和Yii1.x的区别Yii2里面日志的使用方法和Yii1.x并不相同,在Yi
本文实例分析了Yii中Model(模型)的创建及使用方法。分享给大家供大家参考,具体如下:YII实现了两种模型,表单模型(CFormModel类)和Active
本文实例讲述了Yii框架的redis命令使用方法。分享给大家供大家参考,具体如下:redis->set('user','aaa');\Yii::$app->re
本文实例讲述了YII2框架中验证码的简单使用方法。分享给大家供大家参考,具体如下:验证码的使用是比较频繁的。YII2中已经帮我们做好了封装。首先我们在控制器里创