Re: Receive parameter via post

2013-09-19 Thread carlos
Hi, try in the views: print request.POST['id'] for see de value cheers, On Thu, Sep 19, 2013 at 7:25 AM, Hélio Miranda wrote: > Good. > I have my client application server, and was trying to send an id > parameter via a post like this: > $scope.deleteIMG = function(ID){ > $http({ > method: 'P

Re: Receive parameter via post

2013-09-19 Thread Nicolas Mendoza
Here an example: https://gist.github.com/6625035 2013/9/19 Hélio Miranda : > Good. > I have my client application server, and was trying to send an id parameter > via a post like this: > $scope.deleteIMG = function(ID){ > $http({ > method: 'POST',, > url: "http://localhost:8080/onpitch/delImagePla

Receive parameter via post

2013-09-19 Thread Hélio Miranda
Good. I have my client application server, and was trying to send an id parameter via a post like this: $scope.deleteIMG = function(ID){ $http({ method: 'POST',, url: "http://localhost:8080/onpitch/delImagePlayer/";, data: {id:ID}, headers: { "Content-Type": "application/json; charset=utf-8" } })