加载中...

快捷路由


快捷路由

快捷路由允许你快速给控制器注册路由,并且针对不同的请求类型可以设置方法前缀,例如:

  1. // 给User控制器设置快捷路由
  2. Route::controller('user','index/User');

User控制器定义如下:

  1. <?php
  2. namespace app\index\controller;
  3. class User
  4. {
  5. public function getInfo()
  6. {
  7. }
  8. public function getPhone()
  9. {
  10. }
  11. public function postInfo()
  12. {
  13. }
  14. public function putInfo()
  15. {
  16. }
  17. public function deleteInfo()
  18. {
  19. }
  20. }

我们可以通过下面的URL访问

  1. get http://localhost/user/info
  2. get http://localhost/user/phone
  3. post http://localhost/user/info
  4. put http://localhost/user/info
  5. delete http://localhost/user/info

还没有评论.