在页面处理方法中,加入
var_dump(IS_POST);
可以判断是否来自提交页面。
在浏览器中直接输入该方法的URL:http://localhost/wish/index.php/Home/Index/handle
显示:
boolean false
从提交页面提交数据,显示:
boolean true
在页面处理方法中,加入
var_dump(IS_POST);
可以判断是否来自提交页面。
在浏览器中直接输入该方法的URL:http://localhost/wish/index.php/Home/Index/handle
显示:
boolean false
从提交页面提交数据,显示:
boolean true