|
|
|
Angular function CalSumTotal คำนวณแล้วค่าไม่แสดง |
|
|
|
|
|
|
|
ส่วนตัวไม่ถนัด Angular แต่ถนัด VueJS เบื้องต้น ลอง console.log() ค่าแบบไม่คำนวนออกมาดูก่อนว่าเข้าสู่ method จริงหรือไม่ ถ้าได้ค่อย fomular และ bind ออกมาใน model
|
ประวัติการแก้ไข 2020-12-13 08:22:44
|
|
|
|
Date :
2020-12-13 08:19:06 |
By :
Genesis™ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่าง 1.x
Code (AngularJS)
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<div class="form-group">
<label for="">จำนวนเงินรวม</label>
<input type="number" class="form-control" name="amount" ng-model="Add" required="required" >
</div>
<p>{{SumTotal() + Add}}</p>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.item_1 = 1;
$scope.item_2 = 2;
$scope.item_3 = 3;
$scope.item_4 = 4;
$scope.item_5 = 5;
$scope.item_6 = 6;
$scope.SumTotal = function () {
return $scope.item_1 + $scope.item_2 + $scope.item_3 + $scope.item_4 + $scope.item_5 + $scope.item_6;
};
});
</script>
</body>
</html>
|
|
|
|
|
Date :
2020-12-13 11:21:02 |
By :
ล่องหน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|