AngularJS does not send hidden field value
You cannot use double binding with hidden field. The solution is to use brackets : <input type=”hidden” name=”someData” value=”{{data}}” /> {{data}} EDIT : See this thread on github : https://github.com/angular/angular.js/pull/2574 EDIT: Since Angular 1.2, you can use ‘ng-value’ directive to bind an expression to the value attribute of input. This directive should be used with … Read more