My Action In Controller我的项目中的所有动作
public function Add(Request $request)
{
if($request->isMethod('POST'))
{
#code........
}
else{
#code........
}
}
我使用FormRequest
class TestValidation extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(Request $request)
{
if($request->isMethod('POST'))
{
return [
**cod.........**
];
}
}
public function messages()
{
return [
**code.....**
];
}
}
所有的动作在我的项目检查请求是否post或get
我想使用测试验证只是在情况下$request POST
我该怎么做呢?
Laravel的FormRequest扩展自Request,因此你可以在TestValidation中使用它:
if ($this->method() == 'POST') {
// validation related to Create action
}