duan4739 2015-08-20 18:40
浏览 26
已采纳

Laravel - 如何在路由器上从固定URL传递固定值到控制器

I want to pass an ID "0" to the controller if my url is user/new, how can i do it on the route.php in laravel?

I imagined something like this, but I don't think is that simple.

Route::get('user/new','UserController@edit', ['id'=>'0']);
Route::get('user/edit/{id}','UserController@edit');

With normal .htaccess i'd do something like this:

RewriteRule ^user/new    /www/user/edit.php?id=0        [L,QSA]
RewriteRule ^user/(.*)    /www/user/edit.php?id=$1      [L,QSA]

Do I need a middleware? Is there a more simple way to do it?

  • 写回答

3条回答 默认 最新

  • dongzaizai2015 2015-08-20 18:44
    关注

    That's semantically weird, creating an user with an edit function, anyways...

    Why not use a php default paramenter value?

    // UserController.php
    
    public function edit($id = 0) // NOTICE THIS
    {
      // your id is zero if none passed (when /new is called)
    }
    

    Your already existing edit wouldn't change and you don't have to touch your routes.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?