像代码点火器一样的laravel路由

时间:2013-05-29 00:02:38

标签: php codeigniter laravel

我试图从使用代码点火器切换到laravel然而我注意到在我遵循的每个教程中,我们总是在laravel中的route.php中声明路由,而不像代码点火器那样它具有像{{1}这样的默认路由}。有没有办法像CI这样的自动路由,或者我只是错过了laravel路由规则中的一些内容?这非常重要,因为我们都知道大型网站有超过50个链接,如果我们要宣布它将是一个喧嚣那些都在laravel的routes.php中。

2 个答案:

答案 0 :(得分:8)

  

有没有办法像CI一样拥有自动路由

为什么有。在您的路线文件中执行Route::controller(Controller::detect());

现在,在您的控制器类中,确保每个函数名称都与action_连接。因此,如果您的函数名称为homepage(),请将其设为action_homepage()

请注意,您可以使用其他控制器名称get_homepage()post_homepage()。但是你必须在控制器public static $restful = true;

中声明这个类变量

答案 1 :(得分:0)

    //create controller name like UserController

//Steps:
// 1. route matched to either post or get request, 
// 2. used web/controllerName/MethodName/Parameter1/parameter2 .. 
// all parameters received in an array as $params. web/ is used like a route 
// prefix. If no method is passed it will call index method
// 3. explode the parameter
// 4. called the controller with method and paramteres passed
// 5. parameters are matched for regex allowing alphanumeric and slash (url)
// 6. passed through guest middleware

// created controller as mentioned below:

// class SomeController extends Controller
// {
//     public function index($param1,$param2,$param3){

//       return 'index'.$param1.$param2.$param3;
//     }


// }



Route::match(['get','post'],'/web/{controller}/{method?}/{params?}', function ($controller, $method='index', $params='') {    

    $params = explode('/', $params);

    $controller = app()->make("\App\Http\Controllers\\". ucwords($controller).'Controller' );


    return $controller->callAction($method, $params);

})->where('params', '[A-Za-z0-9/]+')->middleware('guest');