昆明网站建设优化技术,一米电子产品营销型网站案例展示,如何做强企业网站,加盟网站有哪些问题描述在使用vue-axios向后端post数据时#xff0c;PHP端获取不到post的数据。问题解决修改php.ini配置找到php.ini配置文件#xff0c;查找enable_post_data_reading变量#xff0c;修改为打开状态#xff0c;注释掉句前分好; Whether PHP will read the POST data.; Th…问题描述在使用vue-axios向后端post数据时PHP端获取不到post的数据。问题解决修改php.ini配置找到php.ini配置文件查找enable_post_data_reading变量修改为打开状态注释掉句前分好; Whether PHP will read the POST data.; This option is enabled by default.; Most likely, you wont want to disable this option globally. It causes $_POST; and $_FILES to always be empty; the only way you will be able to read the; POST data will be through the php://input stream wrapper. This can be useful; to proxy requests or to process the POST data in a memory efficient fashion.; http://php.net/enable-post-data-readingenable_post_data_reading On //大约656行修改此条修改配置后发现还是不行继续查阅资料。获取非表单数据搜集资料之后发现vue-axios向后端post的是非表单数据(Ajax不同)在获取非表单数据时需要用php://input$raw file_get_contents(php://input);//获取非表单数据echo $raw;//输出结果PSpost时前端请求头要设置为headers: {Content-type: application/json; charsetutf-8}