Bardziej efektywne jest bezpośrednie wysłanie pliku.
Base64 kodowania z Content-Type: multipart/form-data
dodaje dodatkowy 33% narzutu. Jeśli serwer to obsługuje, bardziej efektywne jest wysyłanie plików bezpośrednio:
$scope.upload = function(url, file) {
var config = { headers: { 'Content-Type': undefined },
transformResponse: angular.identity
};
return $http.post(url, file, config);
};
Wysyłając POST z obiektem File , ważne jest, aby ustawić 'Content-Type': undefined
. Metoda wysyłania XHR wykryje wtedy obiekt File i automatycznie ustawi typ zawartości.
Aby wysłać wiele plików, zobacz Wykonywanie wielu żądań bezpośrednio z listy plików$http.post
Pomyślałem, że powinienem zacząć od input type = "file", ale potem odkryłem, że AngularJS nie może się z tym powiązać.
<input type=file>
Element nie domyślnie pracy z dyrektywą ng-modelu . Potrzebuje niestandardowej dyrektywy :
Robocze demo dyrektywy „select-ng-files”, która współpracuje z ng-model
1
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="fileArray" multiple>
<h2>Files</h2>
<div ng-repeat="file in fileArray">
{{file.name}}
</div>
</body>
$http.post
z typem treści multipart/form-data
Jeśli trzeba wysłać multipart/form-data
:
<form role="form" enctype="multipart/form-data" name="myForm">
<input type="text" ng-model="fdata.UserName">
<input type="text" ng-model="fdata.FirstName">
<input type="file" select-ng-files ng-model="filesArray" multiple>
<button type="submit" ng-click="upload()">save</button>
</form>
$scope.upload = function() {
var fd = new FormData();
fd.append("data", angular.toJson($scope.fdata));
for (i=0; i<$scope.filesArray.length; i++) {
fd.append("file"+i, $scope.filesArray[i]);
};
var config = { headers: {'Content-Type': undefined},
transformRequest: angular.identity
}
return $http.post(url, fd, config);
};
Podczas wysyłania POST z API FormData ważne jest, aby ustawić 'Content-Type': undefined
. Metoda wysyłania XHR wykryje następnie FormData
obiekt i automatycznie ustawi nagłówek typu zawartości na multipart / form-data z odpowiednią granicą .