小兔网

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使用教程

以上就是yii2判断是否是post方式提交的知识。速戳>>知识兔学习精品课!