PHP가 양식 데이터를 얻을 수 없는 문제를 해결하는 방법은 무엇입니까?
문제 해결 php.ini
구성 수정php.ini
配置
找到php.ini配置文件,查找enable_post_data_reading
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가 비형식 데이터를 백엔드에 게시하는 것을 발견했습니다(Ajax와 다름). 비형식 데이터를 가져올 때 php://input
을 사용해야 합니다.
$raw = file_get_contents('php://input');//获取非表单数据echo $raw;//输出结果 PS:post时前端请求头要设置为 headers: { "Content-type": "application/json; charset=utf-8"}관련 추천: php tutorial🎜
위 내용은 PHP가 양식 데이터를 얻을 수 없는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!