如何将硬编码变量传递给控制器?
我的路线是:
Route::group(array('prefix' => $locale), function() {
Route::get('/milk', array('as' => 'milk', 'uses' => 'ProductsController@index'));
});
我想做类似的事情:
Route::get('/milk', array('as' => 'milk', 'uses' => 'ProductsController@index(1)'));
但这不起作用。
如何做到这一点?
很抱歉,如果我没有解释清楚。
我希望简单地硬编码(由我设置)某些路线的type_id如下:
Route::get('/milk', array('as' => 'milk', 'uses' => 'ProductsController@index(1)'));
Route::get('/cheese', array('as' => 'cheese', 'uses' => 'ProductsController@index(2)'));
...
我的产品控制器供参考:
class ProductsController extends BaseController {
public function index($type_id) {
$Products = new Products;
$products = $Products->where('type_id', $type_id)->get();
return View::make('products.products', array('products' => $products));
}
}
答案 0 :(得分:25)
您可以为路线使用闭包,然后调用控制器操作:
Route::get('/milk', array('as' => 'milk', function(){
return App::make('ProductsController')->index(1);
}));
然而,更好的方法是使用where
条件,然后在控制器中进行类型到id转换。您将丢失直接别名,并且在生成URL时必须将产品作为参数传递。
Route::get('{product}', array('as' => 'product', 'uses' => 'ProductsController@index'))
->where('product', '(milk|cheese)');
答案 1 :(得分:3)
我用它来将值传递给控制器......
路线:
Route::get('user/{user}/usermanage', array('as' => 'userdata.usermanage', 'uses' => 'yourController@getUserDetails'));
//{user} - holds some value...
控制器中的:
public function getUserDetails($id)
{
...
}
如果想要动态:
$var = "Lists";
Route::get('something', array('as' => 'something', 'uses' => 'yourController@get'.$var));
希望这会有所帮助...
答案 2 :(得分:2)
我觉得最简单的方法可能就是route constraints:
Route::get('{milk}', [ 'as' => 'milk', 'uses' => 'ProductsController@index' ])
->where('milk', 'milk'); // matches the named arg {milk} (param 1)
// to the regex literal 'milk' (param 2)
它有一些冗余,但是如果你想纯粹从你的路线上做到这一点,我就是这样做的。
为了制作SEO友好名称,您可以使用Sluggable为每个产品生成一个独特的slug,然后创建以下路线:
Route::get('{product}', [ 'as' => 'product', 'before' => 'product-slug', 'uses' => 'ProductsController@index' ])
->where('product', '[a-z0-9]+[a-z0-9\-]*'); // valid slug syntax
这个过滤器:
Route::filter('product-slug', function($route) {
$slug = $route->getParameter( 'slug' );
if (is_numeric($slug)) { // if the slug is an ID
$product = Product::findOrFail($slug); // try to find the product
return Redirect::route('product', $product->slug); // and redirect to it
}
});
答案 3 :(得分:0)
以下是您实际操作的方法,而不会弄乱网址:
定义路线:
Route::match(['GET', 'POST'], 'my-url', ['var_1'=>'hello', 'var_2'=>'world', 'prefix'=>'my-prefix', 'middleware'=>['web', 'mid2', 'mid3'], 'as'=>"my-route-name", 'uses'=>'myController@index']);
现在在控制器中,function __construct(Request $request)
:
$req_action = @$request->route()->getAction();
$var_1 = $var_2 = '';
if(is_array($req_action) && !empty($req_action['var_1'])){
$var_1 = (int)@$req_action['var_1'];
}
if(is_array($req_action) && !empty($req_action['var_2'])){
$var_2 = @$req_action['var_2'];
}
答案 4 :(得分:0)
对不起,你错了...
Route::GET('/url-name', function(Request $request){
// Pass in custom SEO DATA
$seo = [
'title' => 'Hello world',
'description' => 'some Description'
];
$c = new \App\Http\Controllers\MyController();
return $c->index($request, $seo);
});
在控制器中。...
public function index(Request $request, $seo = null)
{
dd($seo);
}