336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

안녕하세요.

 

scope의 범위에 대해서 보여드릴려고 합니다.

 

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
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<!-- angularJS를 불러옵니다. -->
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
 
<!-- app를 정의합니다. -->
<body ng-app="myApp">
 
<p>언어 :</p>
<h1>{{lan}}</h1>
 
<!-- controller를 정의합니다. -->
<div ng-controller="myCtrl">
 
<p>언어 :</p>
<h1>{{lan}}</h1>
 
</div>
 
<p>언어 :</p>
<h1>{{lan}}</h1>
 
<script>
/* app을 가져와서 변수에 넣습니다. */
var app = angular.module('myApp', []);
/* app안에 있고, controller밖에 있는 것에 대해서 처리하는 것 같습니다. */
app.run(function($rootScope) {
    $rootScope.lan = 'JDK';
});
 
/* controller를 안에서만 처리할  */
app.controller('myCtrl'function($scope) {
    $scope.lan = "블로그";
});
</script>
 
 
</body>
</html>
 
cs

 

같은 lan변수지만 controller안에 있는 것은 블로그라고 나오고, controller밖에 있는 것은 JDK라고 나옵니다.

 

 

감사합니다.

 

 

+ Recent posts