PHP简单实现异步多文件上传并使用Postman测试提交图片

    虽然现在很多都是使用大平台的对象存储存放应用中的文件,但有时小项目还是可以使用以前的方式上传到和程序一起的服务器上,强调一下这里是小众需求,大众可以使用阿里云的OSS,腾讯的COS,七牛的巴拉巴拉xxxxxx……

    

Postman使用

1. 打开后,选择"body"->"form-data",key悬浮的时候选择“File”, 然后value会出现一个文件按钮。

PHP简单实现异步多文件上传并使用Postman测试提交图片_第1张图片

2. 本地的上传方法测试一下打印一下。

PHP简单实现异步多文件上传并使用Postman测试提交图片_第2张图片

PHP简单实现异步多文件上传并使用Postman测试提交图片_第3张图片

3. 以上使用Postman测试文件上传接口就通了,下面就写一个异步上传的效果。

 

多文件异步上传

1. 前端


            
X
// 多图片上传触发事件 function uploadImgs(_this,event) { // 实例FormData var data = new FormData(); for (var i = 0; i < event.target.files.length; i++) { var files = event.target.files[i]; // 批量添加文件 data.append('file[]', files); } // 异步提交 ajaxUpload(data); } function ajaxUpload(data) { $.ajax({ url: '{$ajax_upload_url}', type: "POST", data: data, dataType: 'json', processData: false,// *重要,确认为false contentType: false, // beforeSend: function () { // console.log(11111); // }, success: function (res) { if(res.error == 1) { alert(res.msg); return; }else { console.log(res); var imgArr = $("#hid_img").val(); $.each(res.data,function(index,data) { // 追加显示 $("#img_box").append( '
'+ ''+ 'X'+ '
' ); if(!imgArr) { imgArr = data.path; }else { imgArr += ","+data.path; } // 追加提交数据 //$(".formControls").append(''); }) $("#hid_img").val(imgArr); } }, error: function (res) { alert('异步上传图片接口出错'); return; } }); }

 PHP简单实现异步多文件上传并使用Postman测试提交图片_第4张图片

PHP简单实现异步多文件上传并使用Postman测试提交图片_第5张图片

2. PHP部分就是和同步方式一样。

 /*
     * 图片上传
     * */
    public function ajaxUpload() {
        $upload = new \Think\Upload();// 实例化上传类
        $upload->maxSize   =     3145728 ;// 设置附件上传大小 3145728
        $upload->exts      =     array('jpg', 'gif', 'png', 'jpeg');// 设置附件上传类型
        $upload->rootPath  =     './Uploads/'; // 设置附件上传根目录
        $upload->savePath  =     'repair/'; // 设置附件上传(子)目录
        // 上传文件
        $info   =   $upload->upload();
        if(!$info) {// 上传错误提示错误信息
            $this->ajaxReturn(array("error"=>1,"msg"=>$upload->getError(),"data"=>array()));
        }else{// 上传成功
            $uploadFile = array();
            foreach($info as $key=>$value) {
                $uploadFile[] = array(
                    "path" => ltrim($upload->rootPath,'.').$value['savepath'].$value['savename'],
                    "ext" => $value['ext'],
                );
            }

            $this->ajaxReturn(array("error"=>0,"msg"=>"上传成功","data"=>$uploadFile));
        }
    }

 

公众号

PHP简单实现异步多文件上传并使用Postman测试提交图片_第6张图片

转载于:https://my.oschina.net/u/2456768/blog/3068780

你可能感兴趣的:(PHP简单实现异步多文件上传并使用Postman测试提交图片)