Web Services 如何在Postman REST风格的Web服务中发送多个文件?

lg40wkob  于 2022-11-15  发布在  Postman
关注(0)|答案(6)|浏览(179)

我正在使用REST风格的Web服务。我正在用一个函数(PHP)上传多张照片。
我已经使用$num_files = count($_FILES['myfile']['name'])来计算要上传的文件数,但这总是给出1:

当我打印$_FILES['myfile']['name']$_FILES时,它返回最后一个图像。
我是否需要进行任何设置以一次发送多个文件?

<?php
if($result=="success")
{
    $num_files = count($_FILES['myfile']['name']);
    Zend_Debug::dump($num_files);
    die;
    for( $i=0; $i < $num_files; $i++ )
    {
        $name = $_FILES["myfile"]["name"][$i];
        $temp_path = $_FILES['myfile']['tmp_name'][$i];
        $image_name = Helper_common::getUniqueNameForFile( $name );

        echo $image_name;
        die;
        // Set the upload folder path
        $target_path = $originalDirecory."/";

        // Set upload image path
        $image_upload_path = $target_path.$image_name;
        move_uploaded_file($temp_path, $image_upload_path);

        //if(move_uploaded_file($temp_path, $image_upload_path))
        //{
        // Set 800*800 popup thumbnail...
        // Set popup directory...
        $thumbnail_directory=$popUpDirectory."/";
        // Set thumbnail name...
        $thumb_name1=$thumbnail_directory.'thumbnail_'.$image_name;
        // Set width and height of the thumbnail...
        $thumb_width=800;
        $thumb_height=800;
        $thumb1=Helper_common::generateThumbnail($image_upload_path, $thumb_name1, $thumb_width, $thumb_height);

        //if($thumb)
        //{
            // Set 435*333 thumbnail...
            // Set thumbnail directory...
            $thumbnail_directory=$wallDirecory."/";
            // Set thumbnail name...
            $thumb_name2=$thumbnail_directory.'thumbnail_'.$image_name;
            // Set width and height of the thumbnail...
            $thumb_width=435;
            $thumb_height=435;
            $thumb2=Helper_common::generateThumbnail($image_upload_path, $thumb_name2, $thumb_width, $thumb_height);

            //if($thumb)
            //{
                // Set 176*176 thumbnail...
                // Set thumbnail directory...
                $thumbnail_directory=$galleryDirectory."/";
                // Set thumbnail name...
                $thumb_name3=$thumbnail_directory.'thumbnail_'.$image_name;
                // Set width and height of the thumbnail...
                $thumb_width=176;
                $thumb_height=176;
                $thumb_smart_resize_3 = Helper_ImageResizer::smart_resize_image($image_upload_path, NULL, $thumb_width, $thumb_height, false, $thumb_name3, false);
                $thumb3=Helper_common::generateThumbnail($image_upload_path, $thumb_name3, $thumb_width, $thumb_height);
            //if($thumb)
            //{
                $profile_thumb=$thumb3;
                // Set 131*131 thumbnail...
                // Set thumbnail directory....
                $thumbnail_directory = $thumbnailsDirectory."/";
                // Set thumbnail name....
                $thumb_name4 = $thumbnail_directory.'thumbnail_'.$image_name;
                $thumb_width=131;
                $thumb_height=131;
                $thumb_smart_resize_4=Helper_ImageResizer::smart_resize_image($image_upload_path, NULL, $thumb_width, $thumb_height, false, $thumb_name4, false);
                $thumb4=Helper_common::generateThumbnail($image_upload_path, $thumb_name4, $thumb_width, $thumb_height);

                }
qyzbxkaa

qyzbxkaa1#

我有一个解决方案。我需要让我的文件成为一个数组,如下所示:我的文件[]:)

yduiuuwa

yduiuuwa2#

您需要在参数中添加一个方括号**[]符号。请看下面的图片。我添加了file[]**以从 Postman 处上传多张图片。

jdgnovmf

jdgnovmf3#

您可以简单地添加多行相同的关键字和 Postman 转换成数组。不需要添加[]作为后缀的关键字。

请求

回应

如果你有一个数组objects需要传递,那么遵循下面的模式

67up9zun

67up9zun4#

**更新2020年 Postman **

您不需要添加[ ],只需输入参数名称并选择文件即可。

zc0qhyus

zc0qhyus5#

我正在使用Postman v9.21.0
操作步骤:
1.在Postman中创建新的发布请求。例如https://localhost:44394/api/BlobStorage/UploadFiles
1.点击正文,然后选择form-data
1.在KEY列中键入类似“files”的键名
1.这里是棘手的部分。将鼠标悬停在输入的键文件上。您将在右上角看到文本。将其更改为文件。现在您将在值列中看到选择文件。
1.单击“选择文件”以选择要上载的文件。
1.选择文件后单击发送

mtb9vblg

mtb9vblg6#

是啊,上一版的 Postman 做了一个糟糕的更新。

但是,您可以下载postman的chrome扩展并使用它发送多个文件,它仍然可以在那里工作。

编辑:我刚刚检查了现在,他们把它带回来了,但你必须重新输入文件的键值,如果你使他们与铬版本。
但现在它工作得很好。
查看图像

相关问题