Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Restangular POST form data in json format in Angular JS

I am new to Angular JS and I am in a need to use restangular POST of form data in json format. Also I am new to the POST functionalities, can anyone tell me how I can do it??

MY Index Page:

<form ng-controller="registerCtrl">
 <input placeholder="Username" type="email" name="username"  ng-model="user.email" />
 <input placeholder="Password" type="password" name="password" ng-model="user.password"/>
 <input placeholder="Confirm Password" type="password" name="confirmpassword"  ng-model="user.confirmPassword" />
 <button class="btn btn-info" ng-click="registerUser()" type="submit">Login</button>
</form>

Controller

var myApp=angular.module('myApp',['restangular']);
function registerCtrl($scope, Restangular){
$scope.user = {};
$scope.registerUser=function(){
        $scope.people = Restangular.all('data.json/:user').post($scope.user);
    }
}

Here where should I pass the input values as the Json format..... If am wrong with the code, pls correct me.....

like image 888
Kiran Kumar Avatar asked Sep 03 '13 05:09

Kiran Kumar


1 Answers

In Restangular posts should be done to collections not elements.

In your case POST should be made like this;

$scope.user = {email :"", password: "", confpass: ""};

Then make POST request like;

Restangular.all('data.json/:user').post("users", $scope.user);

Reference;

https://github.com/mgonto/restangular#element-methods

like image 144
BKM Avatar answered Sep 21 '22 05:09

BKM