yii2判断是否是post方式提交

yii2判断是否是post方式提交

在controller里判断提交是不是通过post方式:

 if(YII::$app->request->isPost){         return true;    }else{         return false;    }

判断get提交

if(Yii::$app->request->isGet){     return true; }else{     return false;   }

推荐:yii使用教程

© 版权声明
THE END
喜欢就支持一下吧
点赞15 分享