Bir dosyayı doğrudan göndermek daha etkilidir.
Kodlayan base64 arasında Content-Type: multipart/form-data
ilave bir% 33 yükü ekler. Sunucu destekliyorsa , dosyaları doğrudan göndermek daha etkilidir:
$scope.upload = function(url, file) {
var config = { headers: { 'Content-Type': undefined },
transformResponse: angular.identity
};
return $http.post(url, file, config);
};
Bir File nesnesiyle bir POST gönderirken , ayarlamak önemlidir 'Content-Type': undefined
. XHR gönderme yöntemi sonra algılar Dosya nesnesini ve otomatik içerik türünü ayarlayın.
Birden çok dosya göndermek için, bkz. Doğrudan Dosya Listesinden Birden Çok $http.post
İstek Yapma
Ben girdi türü = "dosya" ile başlamak gerektiğini düşündüm, ama sonra AngularJS buna bağlanamıyor öğrendim ..
<input type=file>
Eleman ile varsayılan çalışmalarından değil ng model direktifi . Bu bir ihtiyacı , özel yönergesi :
Çalışır "select-ng-dosyaları" Yönergesi Çalışma Demo 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
içerik türü ile multipart/form-data
Kişinin göndermesi gerekiyorsa 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);
};
FormData API ile bir POST gönderirken , ayarlamak önemlidir 'Content-Type': undefined
. XHR gönderme yöntemi daha sonra algılar FormData
nesne ve otomatik içerik tipi başlığı ayarlamak çok parçalı / form-verileri ile uygun sınır .