AngularJS Services 나만의 서비스 만들기
나만의 서비스 만들기
자체 서비스를 만들려면 서비스를 모듈에 연결하십시오.
다음과 같은 서비스를 만듭니다 hexafy.
app.service('hexafy', function() {
this.myFunc = function (x) {
return x.toString(16);
}
});
사용자 정의 된 서비스를 사용하려면 컨트롤러 정의시 종속성으로 추가하십시오.
예
이름 hexafy을 16 진수로 변환하려면 명명 된 사용자 지정 서비스를 사용하십시오 .
app.controller('myCtrl', function($scope, hexafy) {
$scope.hex = hexafy.myFunc(255);
});
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<p>The hexadecimal value of 255 is:</p>
<h1>{{hex}}</h1>
</div>
<p>A custom service with a method that converts a given number into a hexadecimal number.</p>
<script>
var app = angular.module('myApp', []);
app.service('hexafy', function() {
this.myFunc = function (x) {
return x.toString(16);
}
});
app.controller('myCtrl', function($scope, hexafy) {
$scope.hex = hexafy.myFunc(255);
});
</script>
</body>
</html>
자체 서비스를 만들려면 서비스를 모듈에 연결하십시오.
다음과 같은 서비스를 만듭니다 hexafy.
app.service('hexafy', function() {
this.myFunc = function (x) {
return x.toString(16);
}
});
사용자 정의 된 서비스를 사용하려면 컨트롤러 정의시 종속성으로 추가하십시오.
예
이름 hexafy을 16 진수로 변환하려면 명명 된 사용자 지정 서비스를 사용하십시오 .
app.controller('myCtrl', function($scope, hexafy) {
$scope.hex = hexafy.myFunc(255);
});
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<p>The hexadecimal value of 255 is:</p>
<h1>{{hex}}</h1>
</div>
<p>A custom service with a method that converts a given number into a hexadecimal number.</p>
<script>
var app = angular.module('myApp', []);
app.service('hexafy', function() {
this.myFunc = function (x) {
return x.toString(16);
}
});
app.controller('myCtrl', function($scope, hexafy) {
$scope.hex = hexafy.myFunc(255);
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 238 | 부트스트랩 | 8년 전 | 1775 | ||
| 237 | 부트스트랩 | 8년 전 | 1587 | ||
| 236 | 부트스트랩 | 8년 전 | 1482 | ||
| 235 | 부트스트랩 | 8년 전 | 1755 | ||
| 234 | 부트스트랩 | 8년 전 | 1328 | ||
| 233 | 부트스트랩 | 8년 전 | 2261 | ||
| 232 | 부트스트랩 | 8년 전 | 1360 | ||
| 231 | 부트스트랩 | 8년 전 | 1715 | ||
| 230 | 부트스트랩 | 8년 전 | 2125 | ||
| 229 | 부트스트랩 | 8년 전 | 2835 | ||
| 228 | 부트스트랩 | 8년 전 | 2670 | ||
| 227 | 부트스트랩 | 8년 전 | 1624 | ||
| 226 | 부트스트랩 | 8년 전 | 2479 | ||
| 225 | 부트스트랩 | 8년 전 | 1636 | ||
| 224 | 부트스트랩 | 8년 전 | 1558 | ||
| 223 | 부트스트랩 | 8년 전 | 1402 | ||
| 222 | 부트스트랩 | 8년 전 | 1937 | ||
| 221 | 부트스트랩 | 8년 전 | 1492 | ||
| 220 | 부트스트랩 | 8년 전 | 1646 | ||
| 219 | 부트스트랩 | 8년 전 | 1196 | ||
| 218 | 부트스트랩 | 8년 전 | 1061 | ||
| 217 | 부트스트랩 | 8년 전 | 1445 | ||
| 216 | 부트스트랩 | 8년 전 | 1324 | ||
| 215 | 부트스트랩 | 8년 전 | 1245 | ||
| 214 | 부트스트랩 | 8년 전 | 1236 | ||
| 213 | 부트스트랩 | 8년 전 | 1381 | ||
| 212 | 부트스트랩 | 8년 전 | 1249 | ||
| 211 | 부트스트랩 | 8년 전 | 1565 | ||
| 210 | 부트스트랩 | 8년 전 | 1557 | ||
| 209 | 부트스트랩 | 8년 전 | 1797 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기