Skip to content

Instantly share code, notes, and snippets.

@renzocastro
Created October 23, 2015 13:43
Show Gist options
  • Select an option

  • Save renzocastro/9da0387259d6cc768db7 to your computer and use it in GitHub Desktop.

Select an option

Save renzocastro/9da0387259d6cc768db7 to your computer and use it in GitHub Desktop.
Envió de data en formato JSON usando AngularJS.
$http({
url: 'php-scripts/save.php',
method: 'POST',
data: JSON.stringify($rootScope.user),
headers: {'content-type': 'application/json'}
}).success(function (data) {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment