Everyone I'm using Ionic I try to send files to my Server, but I have a problem with form data its still empty after append when I check it at console the same think I found it empty and no data is inserted at my DB.
PS: I use many inputs files.
This is controller:
.controller('perProfil', function($scope, annonceService, TDCardDelegate, $timeout, $http, $rootScope) {
$scope.data = {}
$scope.uploadedCin = function(element) {
$scope.$apply(function($scope) {
var files = element.files;
$rootScope.cin = files[0];
})
}
$scope.uploadedbultin = function(element) {
$scope.$apply(function($scope) {
var files = element.files;
$rootScope.bult = files[0];
$rootScope.FormData.append("bult", files[0]);
})
}
$scope.uploadedavis = function(element) {
$scope.$apply(function($scope) {
var files = element.files;
$rootScope.avis = files[0];
})
}
$scope.uploadedCertif = function(element) {
$scope.$apply(function($scope) {
var files = element.files;
$rootScope.certif = files[0];
console.log($rootScope.certif);
})
}
$scope.uploadedFile = function(element) {
var url = 'http://localhost/documents?token=' + localStorage.getItem("token");
console.log($rootScope.FormData);
var fd = new FormData(this);
fd.append("file", JSON.stringify($rootScope.cin));
fd.append("butin", $rootScope.bult);
fd.append("avis", $rootScope.avis);
/fd.append("certifScol",$rootScope.certif);
var data = {
"idUser": "name",
"type": "type"
}
fd.append("data", JSON.stringify(data));
console.log(fd);
$http.post(url, fd, {
headers: {
'Content-Type': 'multipart/form-data'
},
transformRequest: angular.identity
})
.success(function(data) {
console.log(data);
})
.error(function(data) {
console.log(data);
})
}
})