I\'m trying to submit a form the normal way in a AngularJS application but I encounter an issue : it seems that I must specify the action attribute.
According to the
You can use ng-submit.
Form
What's your name? Send My name is: {{name}}
JS
var app = angular.module('App', []); app.controller('AppCtrl', function($scope) { $scope.submit = function() { $scope.name = $scope.name + ' Doe'; } });
Plunker http://plnkr.co/edit/rqAwxWmozrzwwj4oAU5k?p=preview