How To Access Form Data In Servlet Using Angular Js
I am new to angular js. please help me with the below issue I have a form with a controller loginController. I have two text boxes user.email and user.password. I want to post the
Solution 1:
Your <button>
does not cause the form to submit. Change to <input type="submit" ng-disabled="login.$invalid">Log in</button>
or remove ng-submit
from the form and add ng-click="login()"
to the <button>
.
Post a Comment for "How To Access Form Data In Servlet Using Angular Js"