本文操作环境:Windows10系统、ThinkPHP5版、Dell G3电脑。
thinkphp5怎么判断是否是post请求
ThinkPHP中使用isPost()方法来判断当前是否为Post提交数据的。
如果我在做一个添加用户的操作时,我们可以设置一个User/useradd.html作为模板。然后写一个UserAction.php。在UserAction.php中写一个userAdd方法,使用isPost()来判断是否状态,就可以把提交前和提交后写在一个Action里面了。
//用户添加 public function userAdd(){
登录后复制
if($this->isPost()){ //处理 } else{ $this->display('userAdd'); } }
登录后复制
之前使用3.2版本时,经常会使用到
if(IS_POST){ }else{ }
登录后复制
在thinkphp5.1中,废除了IS_POST。
thinkphp5.1中,我们可以这样用,
控制器中引入
use think\facade\Request;
登录后复制
public function index() { if(Request::isPost()){ //这样判断 } else { } }
登录后复制
推荐学习:《PHP视频教程》
以上就是thinkphp5怎么判断是否是post请求的详细内容,更多请关注Work网其它相关文章!