可以用post传输判断form表单是否有值post传过来:

if($request->isMethod('post')){
// 要执行的代码 }
通过 Request 对象的 isMethod 方法来进行判断!
05-08 08:44