$json = $app->request->getBody(); $data = json_decode($json, true);
does the above get content posted by angular?
On Tuesday, 7 July 2015 09:00:58 UTC-5, beastar 457 wrote:
>
> my method that is in my service is like this
>
> tutorial.createtutorial = function(tutorial){
> var defer = $q.defer();
>
> $http.post($rootScope.endPoint + '/api/v1/follower', tutorial)
> .success(function(res){
> defer.resolve(res);
> })
> .error(function(err, status){
> defer.reject(err);
> })
>
> return defer.promise;
> }
>
>
> and how can i get the passed object into php script so that i can insert
> it into database
>
--
You received this message because you are subscribed to the Google Groups
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.