我在控制器中的操作我项目中的所有操作在此模式上
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.....**
];
}
}
我项目中的所有操作检查请求是否发布或获取
我想使用测试验证以防万一 $request POST
我怎样才能做到这一点?