控制器 Controller

优质
小牛编辑
127浏览
2023-12-01

使用swoole的MVC管理,控制器类必须符合下列规范

  • 代码放置到apps\controllers目录下
  • 类名首字母必须为大写
  • 必须继承自Swoole\Controller

实例

class MyController extends Swoole\Controller
{
    function test()
    {
        return "hello world";
    }
}

请求参数

$this->request->get; //GET参数
$this->request->post; //POST参数
$this->request->cookie; //COOKIE
$this->request->request; //所有请求参数
$this->request->session; //会话
$this->request->files; //上传文件
  • 请求参数在进入ControllerAction方法时,会自动进行特殊符号增加反斜杠,HTML转义。如果不希望请求参数被转义,可以设置属性$if_filter = false

使用组件

Controller中可以使用底层提供的各种组件。

  • $this->db:数据库操作,$this->db->query("select * from test")
  • $this->redis:读取Redis$this->redis->get($key)
  • $this->mongo:读取MongoDB
  • $this->log:日志操作, $this->log->info($msg)
  • $this->cache:缓存操作,$this->cache->get($key)
  • $this->httpHttp操作,$this->http->redirect("http://www.baidu.com/")

魔术方法

在Controller类中定义__beforeAction__afterAction可以在执行控制器方法的前后执行一个函数。

前置方法:

class A extends Controller
{
    function __beforeAction($mvc)
    {
        echo "before action\n";
    }

    function test()
    {

    }
}

请求为/a/test/,在test方法执行前先执行__afterAction方法,$mvc变量中包含了Controller,Action等信息。

后置方法:

class A extends Controller
{
    function __afterAction($return)
    {
        echo "after action\n";
    }

    function test()
    {

    }
}

请求为/a/test/,在test方法执行后执行__afterAction方法,$return变量是Action方法的返回值。