vue-axios를 사용하여 백엔드에 데이터를 게시하면 PHP 측에서 게시 데이터를 얻을 수 없습니다. 이 기사는 Post가 PHP에서 비형식 데이터를 얻을 수 없는 문제를 해결하는 방법을 주로 공유합니다. 이것이 모든 사람에게 도움이 되기를 바랍니다.
php.ini
구성 파일을 찾아 enable_post_data_reading
변수를 검색하여 열린 상태로 변경하고 댓글을 달아주세요. out the prefix of the 문장php.ini
配置文件,查找enable_post_data_reading
变量,修改为打开状态,注释掉句前分好
; Whether PHP will read the POST data. ; This option is enabled by default. ; Most likely, you won't 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-reading enable_post_data_reading = On //大约656行,修改此条
修改配置后,发现还是不行,继续查阅资料。
搜集资料之后,发现vue-axios向后端post的是非表单数据(Ajax不同),在获取非表单数据时需要用php://input
$raw = file_get_contents('php://input');//获取非表单数据 echo $raw;//输出结果
정보를 수집한 후 vue-axios가 비형식 데이터를 백엔드에 게시하는 것을 발견했습니다(Ajax와 다름). 비형식 데이터를 가져올 때 php:/를 사용해야 합니다. /input
headers: { "Content-type": "application/json; charset=utf-8" }
PS: 게시 시 프런트 엔드 요청 헤더는 rrreee로 설정되어야 합니다. 관련 권장 사항:
🎜🎜🎜php $_POST html 양식 데이터 가져오기 tutorial_PHP tutorial🎜🎜위 내용은 Post가 PHP에서 비형식 데이터를 얻을 수 없는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!