加入收藏 | 设为首页 | 会员中心 | 我要投稿 核心网 (https://www.hxwgxz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 移动互联 > 正文

Yii中特殊行为ActionFilter的使用方法示例

发布时间:2020-10-26 17:53:42 所属栏目:移动互联 来源:网络整理
导读:这篇文章主要给大家介绍了关于Yii中特殊行为ActionFilter的使用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋

  短视频,自媒体,达人种草一站服务

这篇文章主要给大家介绍了关于Yii中特殊行为ActionFilter的使用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

#FormatStrongID_0#

LoggingFilter 的功能: 在指定请求的 action 前后各记录一条日志

<?php

namespace appfilters;

use yiibaseActionFilter;

class LoggingFilter extends ActionFilter
{
 public function beforeAction($action)
 {
  parent::beforeAction($action);

// To do something
  printf('This is a logging for %sbeforeAction.%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 %safterAction.%s', $this->getActionId($action), PHP_EOL);

return true;
 }
}

新建 appcontrollersSystemController

<?php

namespace appcontrollers;

use appfiltersLoggingFilter;

class SystemController extends yiiwebController
{
 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);
 }
}

#FormatStrongID_1#

请求 ?r=system/test

This is a logging for testbeforeAction.
This is a testing for system/test.
This is a logging for testafterAction.

请求 ?r=system/test-one

This is a testing for system/test-one.

请求 ?r=system/test-two

This is a testing for system/test-two.

Yii中特殊行为ActionFilter的使用方法示例

#FormatStrongID_2#

Yii 中的 ActionFilter(过滤器)相当于 Laravel 中的 Middleware(中间件),beforeAction 相当于前置中间件,afterAction 相当于后置中间件。

到此这篇关于Yii中特殊行为ActionFilter使用的文章就介绍到这了,更多相关Yii特殊行为ActionFilter使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

(编辑:核心网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读