如果我们使用Laravel 4创建一个简单的路由,我们可以使用where为每个param设置正则表达式。在URI中传递。例如:
Route::get('users/{id}',function($id){
return $id;
})->where('id','\d+');
对于每个获取请求第二个参数。必须是数字。当我们创建资源时出现问题,如果我们使用->where()
它会抛出一个关于它不是对象的错误。
我试图把它放在一个组中,作为第三个参数的数组。在资源中但没有工作。我们如何利用Laravel 4资源的强大功能来使用正则表达式的强大功能?
答案 0 :(得分:0)
He Joss,
我对同样的问题很生气,所以我做了一些研究。我只能得出以下结论:你不需要这种方法。在每个控制器方法中,您可以在每个参数后指定默认值:
public function getPage(id = '0', name = 'John Doe'){
接下来你可以进行正则表达式检查,并使用laravel验证器进行许多其他检查,如下所示:
//put the passed arguments in an array
$data['id'] = $id;
$data['name'] = $name;
//set your validation rules
$rules = array(
"id" => "integer"
"name" => "alpha"
);
// makes a new validator instance with the data to be checked with the given
// rules
$validator = Validator::make($data, $rules);
// use the boolean method passes() to check if the data passes the validator
if($validator->passes()){
return "stuff";
}
// set a error response that shows the user what's going on or in case of
// debugging, a response that confirms your above averages awesomeness
return "failure the give a response Sire";
}
由于大多数验证已经在options list laravel中,因此您可能不需要正则表达式检查。然而它是一种选择(正则表达式:模式)。
我在控制器中不存在where()方法背后的理论是,该方法为您提供了在Route文件中进行验证的机会。由于您已经在控制器中具有这种可能性,因此不需要它。