快捷路由-j9九游
快捷路由允许你快速给控制器注册路由,并且针对不同的请求类型可以设置方法前缀,例如:
// 给user控制器设置快捷路由
route::controller('user','index/user');
user控制器定义如下:
namespace app\index\controller;
class user {
public function getinfo()
{
}
public function getphone()
{
}
public function postinfo()
{
}
public function putinfo()
{
}
public function deleteinfo()
{
}
}
我们可以通过下面的url访问
get http://localhost/user/info
get http://localhost/user/phone
post http://localhost/user/info
put http://localhost/user/info
delete http://localhost/user/info
文档最后更新时间:2018-04-25 19:31:37
未解决你的问题?请到「问答社区」反馈你遇到的问题