加载中...

前置操作


可以为某个或者某些操作指定前置执行的操作方法,设置 beforeActionList属性可以指定某个方法为其他方法的前置操作,数组键名为需要调用的前置方法名,无值的话为当前控制器下所有方法的前置方法。

  1. ['except' => '方法名,方法名']

表示这些方法不使用前置方法,

  1. ['only' => '方法名,方法名']

表示只有这些方法使用前置方法。

示例如下:

  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. class Index extends Controller
  5. {
  6. protected $beforeActionList = [
  7. 'first',
  8. 'second' => ['except'=>'hello'],
  9. 'three' => ['only'=>'hello,data'],
  10. ];
  11. protected function first()
  12. {
  13. echo 'first<br/>';
  14. }
  15. protected function second()
  16. {
  17. echo 'second<br/>';
  18. }
  19. protected function three()
  20. {
  21. echo 'three<br/>';
  22. }
  23. public function hello()
  24. {
  25. return 'hello';
  26. }
  27. public function data()
  28. {
  29. return 'data';
  30. }
  31. }

访问

  1. http://localhost/index.php/index/Index/hello

最后的输出结果是

  1. first
  2. three
  3. hello

访问

  1. http://localhost/index.php/index/Index/data

的输出结果是:

  1. first
  2. second
  3. three
  4. data

还没有评论.