gpt4 book ai didi

javascript - 使用 JS Fetch API 的 PHP POST

转载 作者:行者123 更新时间:2023-12-05 08:32:05 25 4
gpt4 key购买 nike

<分区>

我不知道为什么它不起作用。它返回空的 $_POST

JS:

const updateRequest = new FormData();
updateRequest.append('updateRequest', 'next-period');


fetch('file.php', {
method: 'POST',
data: updateRequest
})

.then((response) => response.text())

.then((text) => {
console.log(text);
})

PHP:

<?php

if($_SERVER['REQUEST_METHOD'] === 'POST') {

var_dump(empty($_POST));

}

在 PHP 文件中,服务器请求是 POST 但 var_dump 记录为真。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com