-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path25.Lesson_digest()-apply().html
48 lines (30 loc) · 1.74 KB
/
25.Lesson_digest()-apply().html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>25.Lesson_digest()-apply()</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular.min.js"></script>
<script>
var ControllerExample = angular.module("myapp", []);
ControllerExample.controller("mycontrol", function( $scope, $rootScope ){
document.getElementById("btn").addEventListener("click", function (){
$scope.randomNumber = Math.random();
console.log($scope.randomNumber + " değeri ekrana gönderildi.")
$scope.$digest();
/*
Farklı fonksiyonlar üzerinden #scope değeri değişirse anguların anlaması için $scope değeri güncellenmesini sağlamaktadır
digest() : Sadece $scope güncellerken,
$apply() : rootScope'u da güncellemektedir.
$apply: Kelime anlamı olarak başvurmak ve kullanmak anlamına gelen bu işlevin yaptığı tam olarak bu aslında bizim $Scope ile kullandığımız parametreleri var olmasını sağlıyor.
$digest: Kelime anlamı olarak hazmetmek ve sindirmek anlamına gelen bu işlevin yaptığı tam olarak bu aslında bizim $Scope ile kullandığımız parametrelerin değerlerini pasif hale getiriyor.
*/
});
});
</script>
</head>
<body ng-app="myapp" ng-controller="mycontrol">
<button id="btn">Random Sayı Üret</button>
{{randomNumber}}
</body>
</html>