2

我想找到一种将预配置对象传递给控制器​​的好方法。我知道我可以使用如下 IoC:

Mycontroller extends extends \Illuminate\Routing\Controllers\Controller {

    //i can only use one config uless i pass Request data
    $this->config = App::make('MyconfigObject');

}

但这似乎有只能使用一个配置的限制。我宁愿做如下的事情:

Route::get('some-route', function()
{
    $config = Config::get('some.config');
    $object = new MyConfigObject($config);
    Route::dispatch(MyController($object));
});

我想这样做的原因是我想分派同一个控制器,但对多个路由具有不同的配置。

4

1 回答 1

1

我对这种方法并不完全满意,但它是迄今为止我想出的最好的方法,使用 IoC 的自动分辨率。

引导/stat.php

/*
* bindings to the IoC container
*/
$app->singleton('MyNamespace\Transfer\TransferStategyInterface', function() {
    $config = Config::get('transfer-strategy');
    return new LocalTransferStrategy($config);
});


use MyNamespace\Transfer\TransferStategyInterface;

TransferController.php

use MyNamespace\Transfer\TransferStategyInterface;


class TransferController extends BaseController {

    protected $transferStrategy;

    public function __construct(TransferStategyInterface $transferStrategy = null)
    {
        $this->transferStrategy = $transferStrategy;
    }
}
于 2013-03-21T19:11:57.780 回答