thinkphp5.1 $this->request->isPost()问题
$this->request->isPost() 在接收空数据的
使用$.post(target, query).success(function(data) {
会报下面报错
Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in Unknown on line 0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决方案
前端页面发起$.post时传递到后端的data参数肯定没给值
$this->request->isPost();
request()->isPost();
以上两个都是检测是否为POST请求
接受参数用:
还可以使用: