Axios 发布参数未被 $_POST 读取使用 application/x-www-form-urlencoded format
2022-08-30 10:21:10
所以我有这个代码:
axios({
method: 'post',
url,
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
data: {
json,
type,
}
})
最初我有正常,但我改变了这个,因为我认为这可能是一个标题问题。但是,我仍然在我的 nor 中检测到任何内容。但是,它正在 接收 中的数据。axios.post
$_REQUEST
$_POST
file_get_contents("php://input")
任何想法是什么问题?
编辑
好吧,我想我知道出了什么问题。它将其作为 json 对象发布,因此只能在 php://input 中读取。如何在公理中将其更改为普通字符串?