Angularjs 如何上传多部分表单数据和文件?

IT技术 javascript forms angularjs post multipartform-data
2021-02-26 05:49:26

我是 angular.js 的初学者,但我对基础知识有很好的掌握。

我想要做的是上传一个文件和一些表单数据作为多部分表单数据。我读到这不是 angular 的功能,但是 3rd 方库可以完成此操作。我已经通过 git 克隆了 angular-file-upload,但是我仍然无法发布简单的表单和文件。

有人可以提供一个例子,html和js如何做到这一点?

4个回答

首先

  1. 您不需要对结构进行任何特殊更改。我的意思是:html 输入标签。

<input accept="image/*" name="file" ng-value="fileToUpload"
       value="{{fileToUpload}}" file-model="fileToUpload"
       set-file-data="fileToUpload = value;" 
       type="file" id="my_file" />

1.2 创建自己的指令,

.directive("fileModel",function() {
	return {
		restrict: 'EA',
		scope: {
			setFileData: "&"
		},
		link: function(scope, ele, attrs) {
			ele.on('change', function() {
				scope.$apply(function() {
					var val = ele[0].files[0];
					scope.setFileData({ value: val });
				});
			});
		}
	}
})

  1. 在带有 $httpProvider 的module中,使用 multipart/form-data 添加依赖项,如(接受、内容类型等)。(建议是,接受 json 格式的响应)例如:

$httpProvider.defaults.headers.post['Accept'] = 'application/json, text/javascript'; $httpProvider.defaults.headers.post['Content-Type'] = 'multipart/form-data; 字符集=utf-8';

  1. 然后在控制器中创建单独的函数来处理表单提交调用。比如下面的代码:

  2. 在服务函数中有意处理“responseType”参数,以便服务器不应该抛出“byteerror”。

  3. transformRequest,修改带有附加标识的请求格式。

  4. withCredentials : false,用于 HTTP 身份验证信息。

in controller:

  // code this accordingly, so that your file object 
  // will be picked up in service call below.
  fileUpload.uploadFileToUrl(file); 


in service:

  .service('fileUpload', ['$http', 'ajaxService',
    function($http, ajaxService) {

      this.uploadFileToUrl = function(data) {
        var data = {}; //file object 

        var fd = new FormData();
        fd.append('file', data.file);

        $http.post("endpoint server path to whom sending file", fd, {
            withCredentials: false,
            headers: {
              'Content-Type': undefined
            },
            transformRequest: angular.identity,
            params: {
              fd
            },
            responseType: "arraybuffer"
          })
          .then(function(response) {
            var data = response.data;
            var status = response.status;
            console.log(data);

            if (status == 200 || status == 202) //do whatever in success
            else // handle error in  else if needed 
          })
          .catch(function(error) {
            console.log(error.status);

            // handle else calls
          });
      }
    }
  }])
<script src="//unpkg.com/angular/angular.js"></script>

这是非常有帮助的 +1
2021-04-17 05:49:26
如果我想自己设置边界,而不是使用'Content-Type': undefined并让 angular 自己决定怎么办?在这种情况下,我的headers属性是$http什么?
2021-05-01 05:49:26
谢谢#husamuddin。希望能解开很多相关的疑惑。
2021-05-02 05:49:26
如果要保持默认,则无需指定。否则保留 application/json; 默认在应用程序的根函数中。
2021-05-14 05:49:26
标头:{'内容类型':未定义}
2021-05-15 05:49:26

这必须只是该项目演示页面的副本,并显示在表单提交上上传单个文件以及上传进度。

(function (angular) {
'use strict';

angular.module('uploadModule', [])
    .controller('uploadCtrl', [
        '$scope',
        '$upload',
        function ($scope, $upload) {
            $scope.model = {};
            $scope.selectedFile = [];
            $scope.uploadProgress = 0;

            $scope.uploadFile = function () {
                var file = $scope.selectedFile[0];
                $scope.upload = $upload.upload({
                    url: 'api/upload',
                    method: 'POST',
                    data: angular.toJson($scope.model),
                    file: file
                }).progress(function (evt) {
                    $scope.uploadProgress = parseInt(100.0 * evt.loaded / evt.total, 10);
                }).success(function (data) {
                    //do something
                });
            };

            $scope.onFileSelect = function ($files) {
                $scope.uploadProgress = 0;
                $scope.selectedFile = $files;
            };
        }
    ])
    .directive('progressBar', [
        function () {
            return {
                link: function ($scope, el, attrs) {
                    $scope.$watch(attrs.progressBar, function (newValue) {
                        el.css('width', newValue.toString() + '%');
                    });
                }
            };
        }
    ]);
 }(angular));

HTML

<form ng-submit="uploadFile()">
   <div class="row">
         <div class="col-md-12">
                  <input type="text" ng-model="model.fileDescription" />
                  <input type="number" ng-model="model.rating" />
                  <input type="checkbox" ng-model="model.isAGoodFile" />
                  <input type="file" ng-file-select="onFileSelect($files)">
                  <div class="progress" style="margin-top: 20px;">
                    <div class="progress-bar" progress-bar="uploadProgress" role="progressbar">
                      <span ng-bind="uploadProgress"></span>
                      <span>%</span>
                    </div>
                  </div>

                  <button button type="submit" class="btn btn-default btn-lg">
                    <i class="fa fa-cloud-upload"></i>
                    &nbsp;
                    <span>Upload File</span>
                  </button>
                </div>
              </div>
            </form>

编辑:在文件帖子中添加了将模型传递到服务器的功能。

输入元素中的表单数据将在帖子的 data 属性中发送,并可作为正常表单值使用。

我相信这是来自angular-file-upload。问题中提到的 OP 的回购
2021-04-17 05:49:26
你用什么插件?$upload 是从哪里来的??
2021-04-21 05:49:26
能否请您发布您所指的插件的链接。
2021-04-24 05:49:26
同意,如果没有插件,这个答案很有value。
2021-04-27 05:49:26
嗨,乔恩,我绝对可以让文件正常工作,但是我如何在 html 中添加一个文本字段,然后将其提取为 angular 并将其添加到提交文件的帖子中?
2021-05-07 05:49:26

直接发送文件效率更高。

编码的base64Content-Type: multipart/form-data增加了额外的33%的开销。如果服务器支持,直接发送文件效率更高:

$http.post直接从FileList执行多个请求

$scope.upload = function(url, fileList) {
    var config = {
      headers: { 'Content-Type': undefined },
      transformResponse: angular.identity
    };
    var promises = fileList.map(function(file) {
      return $http.post(url, file, config);
    });
    return $q.all(promises);
};

发送带有File 对象的 POST 时,设置'Content-Type': undefined. 然后XHR 发送方法将检测File 对象并自动设置内容类型。


适用于1的“select-ng-files”指令的工作演示ng-model

<input type=file>默认情况下,元素不与ng-model 指令一起使用它需要一个自定义指令

angular.module("app",[]);

angular.module("app").directive("selectNgFiles", function() {
  return {
    require: "ngModel",
    link: function postLink(scope,elem,attrs,ngModel) {
      elem.on("change", function(e) {
        var files = elem[0].files;
        ngModel.$setViewValue(files);
      })
    }
  }
});
<script src="//unpkg.com/angular/angular.js"></script>
  <body ng-app="app">
    <h1>AngularJS Input `type=file` Demo</h1>
    
    <input type="file" select-ng-files ng-model="fileList" multiple>
    
    <h2>Files</h2>
    <div ng-repeat="file in fileList">
      {{file.name}}
    </div>
  </body>

您可以查看此方法来一起发送图像和表单数据

<div class="form-group ml-5 mt-4" ng-app="myApp" ng-controller="myCtrl">
                    <label for="image_name">Image Name:</label>
                    <input type="text"   placeholder="Image name" ng-model="fileName" class="form-control" required>
                    <br>

                    <br>
                    <input id="file_src" type="file"   accept="image/jpeg" file-input="files"   >
                    <br>
                        {{file_name}}
            <img class="rounded mt-2 mb-2 " id="prvw_img" width="150" height="100" >
                    <hr>
                      <button class="btn btn-info" ng-click="uploadFile()">Upload</button>
                        <br>

                       <div ng-show = "IsVisible" class="alert alert-info w-100 shadow mt-2" role="alert">
              <strong> {{response_msg}} </strong>
            </div>
                            <div class="alert alert-danger " id="filealert"> <strong> File Size should be less than 4 MB </strong></div>
                    </div>

Angular JS 代码

    var app = angular.module("myApp", []);
 app.directive("fileInput", function($parse){
      return{
           link: function($scope, element, attrs){
                element.on("change", function(event){
                     var files = event.target.files;


                     $parse(attrs.fileInput).assign($scope, element[0].files);
                     $scope.$apply();
                });
           }
      }
 });
 app.controller("myCtrl", function($scope, $http){
      $scope.IsVisible = false;
      $scope.uploadFile = function(){
           var form_data = new FormData();
           angular.forEach($scope.files, function(file){
                form_data.append('file', file); //form file
                                form_data.append('file_Name',$scope.fileName); //form text data
           });
           $http.post('upload.php', form_data,
           {
                //'file_Name':$scope.file_name;
                transformRequest: angular.identity,
                headers: {'Content-Type': undefined,'Process-Data': false}
           }).success(function(response){
             $scope.IsVisible = $scope.IsVisible = true;
                      $scope.response_msg=response;
               // alert(response);
               // $scope.select();
           });
      }

 });