JavaScript - Add New Data Using AngularJS

In this tutorial we will create a Add New Data Using AngularJS. This code will store a temporary data in the HTML table without databases when the user submit the form input. The code use angular directives that can add new data as an array in order to store a temporary data without sending to the database server. This a user-friendly program feel free to modify and use it to your system. We will be using AngularJS as a comprehensive JavaScript framework that extend the browser capabilities. It handles the heavy lifting of DOM manipulation and AJAX request in a whole.

Getting Started:

First you have to download Bootstrap, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/. And, this is the link for the AngularJS https://angularjs.org/.

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into you text editor, then save it index.html.
  1. <!DOCTYPE html>
  2. <html lang="en" ng-app="myModule">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  6. </head>
  7. <body ng-controller="myController">
  8. <nav class="navbar navbar-default">
  9. <div class="containet-fluid">
  10. <a class="navbar-brand" href="https://www.sourcecodester.com">Sourcecodester</a>
  11. </div>
  12. </nav>
  13. <div class="col-md-3"></div>
  14. <div class="col-md-6 well">
  15. <h3 class="text-primary">JavaScript - Add New Data Using AngularJS</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <form>
  19. <div class="form-group">
  20. <label>Firstname</label>
  21. <input type="text" class="form-control" ng-model="newUser.firstname"/>
  22. </div>
  23. <div class="form-group">
  24. <label>Lastname</label>
  25. <input type="text" class="form-control" ng-model="newUser.lastname"/>
  26. </div>
  27. <div class="form-group">
  28. <label>Address</label>
  29. <input type="text" class="form-control" ng-model="newUser.address"/>
  30. </div>
  31. <center><button class="btn btn-primary" ng-click="saveUser()">Add</button></center>
  32. </form>
  33. </div>
  34. <div class="col-md-8">
  35. <table class="table table-bordered">
  36. <thead class="alert-info">
  37. <tr>
  38. <th>User ID</th>
  39. <th>Firstname</th>
  40. <th>Lastname</th>
  41. <th>Address</th>
  42. </tr>
  43. </thead>
  44. <tr ng-repeat="user in users">
  45. <td>{{$index+1}}</td>
  46. <td>{{user.firstname}}</td>
  47. <td>{{user.lastname}}</td>
  48. <td>{{user.address}}</td>
  49. </tr>
  50. </tbody>
  51. </table>
  52. </div>
  53. </div>
  54. </body>
  55. <script src="js/angular.js"></script>
  56. <script src="js/script.js"></script>
  57. </html>

Creating the Main Function

This code contains the main function of the application. This code will store a temporary data when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js.
  1. var app = angular.module("myModule", [])
  2. .controller("myController", function($scope){
  3.  
  4. $scope.newUser = {};
  5.  
  6. $scope.users = [
  7. {firstname: "John", lastname: "Smith", address: "New York"}
  8. ];
  9.  
  10. $scope.saveUser = function(){
  11. $scope.users.push($scope.newUser);
  12. $scope.newUser = {};
  13. };
  14.  
  15. });
There you have it we successfully created a Add New Data using AngularJS. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!

Add new comment