wuding/magic-cube

There is no license information available for the latest version (21.2.16) of this package.

21.2.16 2021-02-15 21:21 UTC

This package is auto-updated.

Last update: 2024-11-15 15:18:44 UTC


README

实现过程

HTTP 请求方法和请求地址转换标准化后的句柄

路由处理结果

  • 状态:0 未找到 1 成功匹配 2 方法不允许
  • 方法:全转为小写
  • 标识::/@

控制器路径和方法调用

  • 模块文件夹:是否放 module 目录里

  • 方法文件夹

  • 方法附加到动作名:

    <prefix><action><suffix>
    
  • 方法地图:

    $actionMaps = [
        'actionName' => [
            'get' => 'index',
            'post' => 'create',
        ],
    ];
    

预置动作

  • 未找到:_notfound
  • 缺省:_default

解析优先级

返回类型

默认推荐数组类型

控制器直接输出支持任何类型

视图渲染要看模板引擎支持了