nói một cách đơn giản
trong Html - chỉ thêm mã bên dưới
<form name="upload" class="form" data-ng-submit="addFile()">
<input type="file" name="file" multiple
onchange="angular.element(this).scope().uploadedFile(this)" />
<button type="submit">Upload </button>
</form>
trong bộ điều khiển - Chức năng này được gọi khi bạn nhấp vào "nút tải lên tệp" . nó sẽ tải tập tin lên bạn có thể điều khiển nó
$scope.uploadedFile = function(element) {
$scope.$apply(function($scope) {
$scope.files = element.files;
});
}
thêm nhiều hơn trong bộ điều khiển - bên dưới mã thêm vào chức năng. Chức năng này được gọi khi bạn nhấp vào nút được sử dụng "nhấn api (POST)" . nó sẽ gửi tệp (đã tải lên) và dữ liệu biểu mẫu đến phần phụ trợ.
var url = httpURL + "/reporttojson"
var files=$scope.files;
for ( var i = 0; i < files.length; i++)
{
var fd = new FormData();
angular.forEach(files,function(file){
fd.append('file',file);
});
var data ={
msg : message,
sub : sub,
sendMail: sendMail,
selectUsersAcknowledge:false
};
fd.append("data", JSON.stringify(data));
$http.post(url, fd, {
withCredentials : false,
headers : {
'Content-Type' : undefined
},
transformRequest : angular.identity
}).success(function(data)
{
toastr.success("Notification sent successfully","",{timeOut: 2000});
$scope.removereport()
$timeout(function() {
location.reload();
}, 1000);
}).error(function(data)
{
toastr.success("Error in Sending Notification","",{timeOut: 2000});
$scope.removereport()
});
}
trong trường hợp này .. tôi đã thêm mã dưới đây dưới dạng dữ liệu
var data ={
msg : message,
sub : sub,
sendMail: sendMail,
selectUsersAcknowledge:false
};