多级控制器-j9九游
新版支持任意层次级别的控制器,并且支持路由,例如:
namespace app\index\controller\one;
use think\controller;
class blog extends controller
{
public function index()
{
return $this->fetch();
}
public function add()
{
return $this->fetch();
}
public function edit($id)
{
return $this->fetch();
}
}
该控制器类的文件位置为:
application/index/controller/one/blog.php
访问地址可以使用
http://servername/index.php/index/one.blog/index
如果要在路由定义中使用多级控制器,可以使用:
\think\route::get('blog/add','index/one.blog/add');
文档最后更新时间:2018-04-26 09:12:15
未解决你的问题?请到「问答社区」反馈你遇到的问题