doutui2883 2019-05-15 18:28 采纳率: 100%
浏览 2758
已采纳

如何使用UnityWebRequest.Post()将多个文件上传到服务器;

我正在尝试使用UnityWebRequest.Post()上传多个文件,这是我的代码。

 public void UploadFiles()
 {
     string[] path = new string[3];
     path[0] = "D:/File1.txt";
     path[1] = "D:/File2.txt";
     path[2] = "D:/File3.txt";

     UnityWebRequest[] files = new UnityWebRequest[3];
     WWWForm form = new WWWForm();

     for (int i = 0; i < files.Length; i++)
     {
         files[i] = UnityWebRequest.Get(path[i]);
         form.AddBinaryData("files[]", files[i].downloadHandler.data, Path.GetFileName(path[i]));
     }

     UnityWebRequest req = UnityWebRequest.Post("http://localhost/File%20Upload/Uploader.php", form);
     yield return req.SendWebRequest();

     if (req.isHttpError || req.isNetworkError)
         Debug.Log(req.error);
     else
         Debug.Log("Uploaded " + files.Length + " files Successfully");
 }

但是,文件是在目标位置创建的,大小为0字节。 这是我的Uploader.php代码

 <$php
   $total = count($_FILES['files']['name']);
   $uploadError = false;
   for ( $i = 0; $i < $total; $i++)
   {
     $tmpFilePath = $_FILES['files']['tmp_name'][$i];

     if ($tmpFilePath != "")
     {
         $newFilePath = "Uploads/".$_FILES['files']['name'][$i];
         if (!move_uploaded_file($tmpFilePath, $newFilePath))
             $uploadError = true;
     }
   }
   if ($uploadError)
       echo "Upload Error";
   else
       echo "Uploaded Successfully";
 ?>

我将此HTML示例用作参考。 在浏览器中,HTML代码可以完美运行。 而在Unity中却有问题。

 <form enctype="multipart/form-data" action="Uploader.php" method="POST">
     Choose a file to Upload:
     <input type="file" name="files[]" multiple="multiple" /><br>
     <input type="submit" value="Upload File" />
 </form>
  • 写回答

1条回答 默认 最新

  • douxian7808 2019-05-15 19:08
    关注

    In for loop, in the C# code, after requesting the file, we must yield while the file is fetched. so using yield return files[i].SendWebRequest(); after requesting the file will solve the problem. Here is the modified code:

    IEnumerator UploadMultipleFiles()
    {
        string[] path = new string[3];
        path[0] = "D:/File1.txt";
        path[1] = "D:/File2.txt";
        path[2] = "D:/File3.txt";
    
        UnityWebRequest[] files = new UnityWebRequest[path.Length];
        WWWForm form = new WWWForm();
    
        for (int i = 0; i < files.Length; i++)
        {
            files[i] = UnityWebRequest.Get(path[i]);
            yield return files[i].SendWebRequest();
            form.AddBinaryData("files[]", files[i].downloadHandler.data, Path.GetFileName(path[i]));
        }
    
        UnityWebRequest req = UnityWebRequest.Post("http://localhost/File%20Upload/Uploader.php", form);
        yield return req.SendWebRequest();
    
        if (req.isHttpError || req.isNetworkError)
            Debug.Log(req.error);
        else
            Debug.Log("Uploaded " + files.Length + " files Successfully");
    }
    

    Rest of the code is fine. No changes in PHP code. HTML code is only for reference.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 fastreport怎么判断当前页数
  • ¥15 Kylin-Desktop-V10-GFB-Release-JICAI_02- 2207-Build14-ARM64.iso有没有这个版本的系统啊
  • ¥15 能不能通过蓝牙将传感器数据传送到手机上
  • ¥20 100元python和数据科学实验项目
  • ¥15 根据时间在调用出列表
  • ¥15 R 包chipseeker 安装失败
  • ¥15 Veeam Backup & Replication 9.5 还原问题
  • ¥15 vue-print-nb
  • ¥15 winfrom的datagridview下拉框变成了黑色,渲染不成功
  • ¥20 利用ntfy实现短信推送