JavaScript - Simple Shopping Cart Using AngularJS
Submitted by razormist on Saturday, October 26, 2019 - 13:24.
In this tutorial we will create a Simple Shopping Cart Using AngularJS. This code will store a temporary data in the table without using databases when the user select a product in the table. The code itself use a angular directives that can insert a temporary data in the table in a array object using dot notation push(). 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.
There you have it we successfully created a Simple Shopping Cart 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!!
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.- <!DOCTYPE html>
- <html lang="en" ng-app="myModule">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body ng-controller="myController">
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px groov #ccc;"/>
- <div class="col-md-7">
- <hr style="border-top:1px dotted #ccc;">
- <div ng-repeat = "product in products ">
- <div style="width:150px; padding:10px; float:left; border:1px solid #000; margin:10px;">
- </div>
- </div>
- </div>
- <div class="col-md-5">
- <table class="table table-bordered">
- <thead>
- <tr>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat = "cart in carts" ng-init="setTotals(cart)">
- </tr>
- <tr>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </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.- var app = angular.module("myModule", [])
- .controller("myController", function($scope){
- $scope.carts=[];
- $scope.products = [
- {p_id: "1", p_name: "Samsung Galaxy S10", p_price: 28990},
- {p_id: "2", p_name: "Iphone XI", p_price: 51999},
- ];
- $scope.newCart=function(product){
- if(product){
- $scope.carts.push({p_id: product.p_id, p_name: product.p_name, p_price: product.p_price});
- }
- }
- $scope.total=0;
- $scope.setTotals=function(cart){
- if(cart){
- $scope.total+=cart.p_price;
- }
- }
- $scope.remove_cart = function(cart){
- if(cart){
- $scope.carts.splice($scope.carts.indexOf(cart), 1);
- $scope.total-=cart.p_price;
- }
- }
- $scope.confirm=function(){
- if($scope.total !=0){
- alert("Thank you for purchasing!");
- window.location="index.html";
- }
- }
- });
Add new comment
- 593 views