yii2判断是否是post方式提交

2020-08-24 11:12:30

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

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

判断get提交

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

推荐:yii使用教程

相关文章 大家在看