I am very new to AngularJs. In my example I am trying to read two initiger value from controller model and multiple that numbers in html page by using AngularJs tag.
controller
(function (angular) {
angular.module('Invoice1', [])
.controller('InvoiceController', function () {
this.qty = 1;
this.cost = 2;
});
})
Html
<!DOCTYPE html>
<html ng-app>
<head>
<title>AngularJs Form Test 2</title>
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<script src="Scripts/angular.min.js"></script>
<script src="invController.js"></script>
</head>
<body>
<div id="calculateNumber" ng-app="Invoice1" ng-controller="InvoiceController as invoice">
<div>
Quantity : <input type="number" min="0" ng-model="invoice.qty" />
</div>
<div>
Costs : <input type="number" min="0" ng-model="invoice.cost" />
</div>
<div>
<b>Total: </b> {{invoice.qty * invoice.cost | currency}}
</div>
</div>
</body>
</html>
You have mentioned multiple
ng-app
in your html.Use
ng-app="Invoice1"
in<html>
tag, remove the other one and you are good to goHere's the updated plunkr