HELP. I'm trying to send an image to a web service via POST. in postman I tested it and it worked
InmycontrollerIdidso
$scope.upload=function(files){varfd=newFormData();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.score image (fd) is calling my service, follow 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 the Web Service does not find any files in the request.