по поводу передачи параметров пост (взято со стэковерфлоу)
$scope.listPhone = function() {
var xsrf = {str: $scope.TelSpr.str};
$http({
method: 'POST',
url: 'http://ваш url',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
transformRequest: function(obj) {
var str = [];
for(var p in obj)
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
data: xsrf
}).success(function (response)
{
// console.log(response)
$scope.spr = response;
$ionicLoading.hide();
})
.error(function(data, status, headers, config){
console.log("**** ERROR ****");
console.log(status);
$ionicLoading.hide();
})
showLoading('Загрузка');
}