Таким образом можно поступить:
$http.post('/anguler-tasks-tcpdump2/editData.php',{id:tcpdump.id,command:tcpdump.command})
.then(function(response) {
console.log(response.data);
$scope.notify('success','Команда "' + tcpdump.command + '" успешно изменена!');
})
.catch(function(e) {
console.log('Error: ', e);
throw e;
});