繁体   English   中英

获取 API POST 请求响应返回空文本

[英]Fetch API POST request response returns empty text

我正在尝试获取我通过 fetch() 发送的 post 请求的响应,但结果返回一个空文本。

JS:

async getTotalCompletionTimes()
{
    var res = await fetch("repository/maps.php?method=getcompletiontimes&map="+this.getName(), {method: 'POST'});
    const result = await res.text();
    return result;
}

PHP

<?php
require_once("user.php");
if($_SERVER["REQUEST_METHOD"] == "POST")
{
<some code>
else if(isset($_POST["method"]) && $_POST["method"] == "getcompletiontimes" && isset($_POST["map"]))
{
    $times = 0;
    $users = glob('../users/*', GLOB_ONLYDIR);
    foreach($users as $u)
    {
        if(!file_exists($u."/maps.json")) continue;
        $json = json_decode(file_get_contents($u."/maps.json"), true);
        foreach($json as $map => $v)
        {
            if($map == $_POST["map"])
            {
                $times += $v;
            }
        }
    }
    echo $times;
}
<some other code>
?>

我在 cmd 中使用 curl 测试了 php 响应: curl -X POST localhost/game/repository/maps.php -d "method=getcompletiontimes&map=map_1" 并返回“2”作为响应。

对服务器的 curl 请求是一个带有application/x-www-form-urlencoded内容类型的HTTP POST请求,数据的传输类似于浏览器提交 HTML 表单的方式。 此请求数据包含'method''map'参数。

但是,在fetch实现中, 'method''map'参数作为 URL 查询参数发送。 这样,它们在$_POST全局数组中不可用,但在$_GET全局数组中可用。

您可以通过将fetch初始化数据的body 选项设置为包含包含这两个参数的表单数据,以与curl类似的方式将'method''map'参数发送到服务器。

async getTotalCompletionTimes()
{
    const fd = new FormData();
    fd.append("method", "getcompletiontimes");
    fd.append("map", this.getName());
    const res = await fetch(
      "repository/maps.php",
      {
        method: "POST",
        body: fd
      });
    const result = await res.text();
    return result;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM