dongzhuo5185 2014-05-14 18:37
浏览 189
已采纳

Laravel 4,组前缀需要更改路由名称。 真?

So I've been working on an app that lived on the domain root and now has to work on /admin. So URLs like domain.com/[resource] should now be domain.com/admin/[resource]. I didn't thought this very well before since I assumed that this had to be a very easy fix on Laravel. After all, that's one of the main reasons for not hardcoding routes, right?

So my routes.php file looked something like:

Route::group(['before' => 'auth'], function() {
    Route::resource('books', 'BooksController');
    ... more resources here ...
});

Going through the docs I found that 'prefix' => 'admin' would do the trick:

Route::group(['prefix' => 'admin', 'before' => 'auth'], function() {
    Route::resource('books', 'BooksController');
    ... more resources here ...
});

But it turns out that every route name get's changed from books.{action} to admin.books.{action} which requires me to change the whole app. Regexing would be dangerous and doing it manually would be annoying. Laravel was supposed to help with this! Or am I missing something?

  • 写回答

1条回答 默认 最新

  • doufang1954 2014-05-14 18:46
    关注

    This is untested, but after looking on the documentation for resource controllers it seems as though you can manually set their names. I'm assuming Laravel automatically namespaces grouped resource controller routes to avoid name collision, but you can override this to avoid going back through the rest of your app (just beware of future name collision):

    Route::resource(
        'books',
        'BooksController',
        array(
            'names' => array(
                'index'   => 'photo.index',
                'create'  => 'photo.create',
                'store'   => 'photo.store',
                'show'    => 'photo.show',
                'edit'    => 'photo.edit',
                'update'  => 'photo.update',
                'destroy' => 'photo.destroy',
            )
        )
    );
    

    Shorter Method:

    Just define a quick method at the top of your routes.php file to shorten up this repetitive task of creating an array of route names. Still not the greatest solution, but I believe its the only thing you can do with how Laravel has this set up.

    function createRouteNames($resource) {
        $names = array();
        $types = ['index', 'create', 'store', 'show', 'edit', 'update', 'destroy'];
        foreach($types as $type) {
            $names[$type] = $resource . '.' . $type;
        }
        return $names;
    }
    
    Route::resource('books', 'BooksController', ['names' => createRouteNames('books')]);
    

    Note: [] === array() and may not be supported on older PHP's, meaning you may need to replace them with the old syntax.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 nslt的可用模型,或者其他可以进行推理的现有模型
  • ¥15 arduino上连sim900a实现连接mqtt服务器
  • ¥15 vncviewer7.0安装后如何正确注册License许可证,激活使用
  • ¥15 phython如何实现以下功能?查找同一用户名的消费金额合并2
  • ¥66 关于人体营养与饮食规划的线性规划模型
  • ¥15 基于深度学习的快递面单识别系统
  • ¥15 Multisim仿真设计地铁到站提醒电路
  • ¥15 怎么用一个500W电源给5台60W的电脑供电
  • ¥15 请推荐一个轻量级规则引擎,配合流程引擎使用,规则引擎负责判断出符合规则的流程引擎模板id
  • ¥15 Excel表只有年月怎么计算年龄