-1
HELP. I am trying to send an image to a web service via POST. no Postman tested and worked
in my controller I did so
$scope.upload = function (files) {
var fd = new FormData();
fd.append('imagem', files[0]);
midanaAPI.cadastrarImagem(fd).success(
function (data) {
if (data.Status) {
$scope.foto = data.UrlImage;
}else {
$scope.mensagemErro = "Não foi possível carregar a Imagem, tente novamente.";
}
});
}
this midanaAPI.cadastrarImage(fd) is calling my service, follows the code
var _cadastrarImagem = function (imagem) {
var data = 'Foto='+imagem;
var config = {
headers: {
'Content-Type': undefined,
'Device': "midayas.Device",
'Token': "midayas.Token"
}
};
return $http.post(configValor.baseUrl + "Upload/File", data, config);
};
only that Web Service does not find any file in the request.