我有以下 js 片段: fetch('/some/webhook', { method: 'post', headers: { 'content-type': 'application/json' }, body: JSON.stringify({test:'1'}) }).then(function(res) { // do something here }).then(function(data) { // do something else here });幾個小時以來,我一直試圖將正文發(fā)送到我的服務(wù)器,但監(jiān)聽腳本在 $_POST 變量中看不到任何內(nèi)容。Webhook 接收請求。一個簡單的:die (var_dump($_POST));結(jié)果控制臺中顯示一個空數(shù)組,我本希望在其中看到test值為 1 的變量。怎么了?
1 回答

慕妹3242003
TA貢獻(xiàn)1824條經(jīng)驗 獲得超6個贊
您發(fā)送數(shù)據(jù)的方式,php 不會填充 de _POST 變量
如果你想發(fā)送json
內(nèi)容,你應(yīng)該這樣做
$data = json_decode(file_get_contents('php://input'), true); echo $data["test"];
替代解決方案,如果您希望包含數(shù)據(jù),則_POST
應(yīng)該發(fā)送multipart/form-data
標(biāo)頭并使用 anew FormData();
作為 的正文fetch
。
- 1 回答
- 0 關(guān)注
- 113 瀏覽
添加回答
舉報
0/150
提交
取消