157

我想知道是否可以在 Laravel 的资源控制器中添加新方法以及如何操作。

我知道这些方法是默认的(索引、创建、存储、编辑、更新、销毁)。现在我想向同一个控制器添加其他方法和路由。

那可能吗?

4

9 回答 9

300

只需在注册资源之前单独添加到该方法的路由:

Route::get('foo/bar', 'FooController@bar');
Route::resource('foo', 'FooController');
于 2013-05-21T02:47:16.487 回答
34

是的,有可能。。

在我的情况下,我添加方法:数据来处理 HTTP POST 方法中对 /data.json 的请求。

这就是我所做的。

首先我们扩展Illuminate\Routing\ResourceRegistrar来添加新的方法数据

<?php

namespace App\MyCustom\Routing;

use Illuminate\Routing\ResourceRegistrar as OriginalRegistrar;

class ResourceRegistrar extends OriginalRegistrar
{
    // add data to the array
    /**
     * The default actions for a resourceful controller.
     *
     * @var array
     */
    protected $resourceDefaults = ['index', 'create', 'store', 'show', 'edit', 'update', 'destroy', 'data'];


    /**
     * Add the data method for a resourceful route.
     *
     * @param  string  $name
     * @param  string  $base
     * @param  string  $controller
     * @param  array   $options
     * @return \Illuminate\Routing\Route
     */
    protected function addResourceData($name, $base, $controller, $options)
    {
        $uri = $this->getResourceUri($name).'/data.json';

        $action = $this->getResourceAction($name, $controller, 'data', $options);

        return $this->router->post($uri, $action);
    }
}

之后,创建新的ServiceProvider或改用AppServiceProvider

在方法引导中,添加以下代码:

    public function boot()
    {
        $registrar = new \App\MyCustom\Routing\ResourceRegistrar($this->app['router']);

        $this->app->bind('Illuminate\Routing\ResourceRegistrar', function () use ($registrar) {
            return $registrar;
        });
    }

然后 :

添加到您的路线:

Route::resource('test', 'TestController');

检查php artisan route:list 你会发现新方法“数据”

于 2016-03-23T05:04:29.523 回答
33

我只是这样做了,添加了一个 GET “删除”方法。

创建文件后,您只需要添加

'AntonioRibeiro\Routing\ExtendedRouterServiceProvider',

到您的 app/config.php 中的“提供者”

在同一文件中编辑 Route 别名:

'Route'           => 'Illuminate\Support\Facades\Route',

将其更改为

'Route'           => 'AntonioRibeiro\Facades\ExtendedRouteFacade',

并确保这些文件正在被自动加载,它们必须位于您的 composer.json (“自动加载”部分)中的某个目录中。

然后你只需要:

Route::resource('users', 'UsersController');

如果你运行,这(看看最后一行)是结果php artisan routes

路线列表 这些是我的源文件:

ExtendedRouteFacade.pas

<?php namespace AntonioRibeiro\Facades;

use Illuminate\Support\Facades\Facade as IlluminateFacade;

class ExtendedRouteFacade extends IlluminateFacade {

    /**
     * Determine if the current route matches a given name.
     *
     * @param  string  $name
     * @return bool
     */
    public static function is($name)
    {
        return static::$app['router']->currentRouteNamed($name);
    }

    /**
     * Determine if the current route uses a given controller action.
     *
     * @param  string  $action
     * @return bool
     */
    public static function uses($action)
    {
        return static::$app['router']->currentRouteUses($action);
    }

    /**
     * Get the registered name of the component.
     *
     * @return string
     */
    protected static function getFacadeAccessor() { return 'router'; }

}

扩展路由器.pas

<?php namespace AntonioRibeiro\Routing;

class ExtendedRouter extends \Illuminate\Routing\Router {

    protected $resourceDefaults = array('index', 'create', 'store', 'show', 'edit', 'update', 'destroy', 'delete');

    /**
     * Add the show method for a resourceful route.
     *
     * @param  string  $name
     * @param  string  $base
     * @param  string  $controller
     * @return void
     */
    protected function addResourceDelete($name, $base, $controller)
    {
        $uri = $this->getResourceUri($name).'/{'.$base.'}/destroy';

        return $this->get($uri, $this->getResourceAction($name, $controller, 'delete'));
    }

}

ExtendedRouteServiceProvider.pas

<?php namespace AntonioRibeiro\Routing;

use Illuminate\Support\ServiceProvider;

class ExtendedRouterServiceProvider extends ServiceProvider {

    /**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    protected $defer = true;

    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
        $this->app['router'] = $this->app->share(function() { return new ExtendedRouter($this->app); });
    }

    /**
     * Get the services provided by the provider.
     *
     * @return array
     */
    public function provides()
    {
        return array('router');
    }

}
于 2013-05-21T03:15:47.867 回答
14
Route::resource('foo', 'FooController');
Route::controller('foo', 'FooController');

试试这个。给你额外的方法,比如 getData() 等等。这对我来说保持 route.php 干净

于 2014-04-08T13:07:42.537 回答
3

使用 Laravel >5 在 routes 文件夹中找到 web.php 文件添加你的方法

您可以使用 route::resource 将所有这些方法的 index、show、store、update、destroy 路由到您的控制器中的一行中

Route::get('foo/bar', 'NameController@bar');
Route::resource('foo', 'NameController');
于 2018-04-23T03:45:06.410 回答
1

只需添加一个新方法和该方法的路由。

在您的控制器中:

public function foo($bar=“default”)
{
      //do stuff
}

在您的网络路线中

Route::get(“foo/{$bar}”, “MyController@foo”);

只要确保控制器中的方法是公开的。

于 2018-04-01T06:24:11.280 回答
1

我解决了

创建一个自定义路由器文件,扩展BaseRouter

// src/app/Custom/Router.php


<?php

namespace App\Custom;

use Illuminate\Routing\Router as BaseRouter;
use Illuminate\Support\Str;

class Router extends BaseRouter
{
    public function customResource($name, $controller, array $options = [])
    {
        $model = Str::singular($name); // this is optional, i need it for Route Model Binding

        $this
            ->get( // set the http methods
                $name .'/{' . $model . '}/audit',
                $controller . '@audit'
            )->name($name . '.audit');

        return $this->resource($name, $controller, $options);
    }
}

然后在src/bootstrap/app.php

$app->singleton('router', function ($app) {
    return new \App\Custom\Router($app['events'], $app);
});

并在 /routes/web.php 上使用它

Route::customResource(
    'entries',
    'EntryController'
);
于 2020-08-31T09:09:54.977 回答
0

以前我将我的路线定义为:

Route::get('foo/bar', 'FooController@bar');
Route::resource('foo', 'FooController');

它给出了错误:

路由 foo.bar 未定义

然后在谷歌搜索后我添加了名字

Route::get('foo/bar', 'FooController@bar')->name('foo.bar');

它工作得很好。

于 2020-08-01T12:51:08.350 回答
-2

这也很好用。无需添加更多路由,只需使用资源控制器的 show 方法,如下所示:

public function show($name){

 switch ($name){
   case 'foo':
    $this -> foo();
    break;
   case 'bar':
    $this ->bar();
    break; 
  defautlt:
    abort(404,'bad request');
    break;
 }

}
public function foo(){}
publcc function bar(){}

我使用默认值来抛出自定义错误页面。

于 2015-08-25T06:27:24.653 回答