일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Login with OAuth Authentication
- Random
- jquery
- 추상클래스
- IBatis procedure
- 야구게임
- 이클립스
- 로또
- 자바
- 페이징
- Validations
- 형변환
- 업캐스팅
- 스프링
- 단축키
- 다운캐스팅
- 전체
- angular2
- 자바 야구게임
- 전체텍스트
- 전자정부
- 다형성
- 가변인자
- 25가지 효율적인 sql작성법
- while
- 상속
- Full text
- 상속예제
- full text indexing
Archives
- Today
- Total
nalaolla
[AngularJS] 13.5 API - AngularJS 강좌 본문
728x90
반응형
AngularJS API
1. AngularJS Global API
AngularJS Global API는 아래와 같은 일을 수행하기 위한 global 자바스크립트 함수의 집합입니다:
- 객체 비교
- 객체 열거
- 데이터 변환
Global API 함수는 angular 객체를 사용하여 접근됩니다.
API | Description |
---|---|
angular.lowercase() | Converts a string to lowercase |
angular.uppercase() | Converts a string to uppercase |
angular.isString() | Returns true if the reference is a string |
angular.isNumber() | Returns true if the reference is a number |
[출처: W3Schools ]
1-1. angular.lowercase()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!DOCTYPE html> <html> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script> <body> <div ng-app="myApp" ng-controller="myCtrl"> <p>{{ x1 }}</p> <p>{{ x2 }}</p> </div> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.x1 = "JOHN"; $scope.x2 = angular.lowercase($scope.x1); }); </script> </body> </html> | cs |
1-2. angular.uppercase()
1 2 3 4 5 6 7 8 9 10 11 12 13 | <div ng-app="myApp" ng-controller="myCtrl"> <p>{{ x1 }}</p> <p>{{ x2 }}</p> </div> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.x1 = "John"; $scope.x2 = angular.uppercase($scope.x1); }); </script> | cs |
1-3. angular.isString()
1 2 3 4 5 6 7 8 9 10 11 12 | <div ng-app="myApp" ng-controller="myCtrl"> <p>{{ x1 }}</p> <p>{{ x2 }}</p> </div> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.x1 = "JOHN"; $scope.x2 = angular.isString($scope.x1); }); </script> | cs |
1-4.angular.isNumber()
1 2 3 4 5 6 7 8 9 10 11 12 | <div ng-app="myApp" ng-controller="myCtrl"> <p>{{ x1 }}</p> <p>{{ x2 }}</p> </div> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.x1 = "JOHN"; $scope.x2 = angular.isNumber($scope.x1); }); </script> | cs |
* 이 강좌는 w3schools를 참고하여 작성하였습니다.
728x90
반응형
'AngularJS_1' 카테고리의 다른 글
[AngularJS] 16. Application - Angular JS 강좌 (0) | 2016.06.14 |
---|---|
[AngularJS] 15. Includes - Angular JS 강좌 (0) | 2016.06.14 |
[AngularJS] 14. Bootstrap- Angular JS 강좌 (0) | 2016.06.14 |
[AngularJS] 13. 검사(Validations) - Angular JS 강좌 (0) | 2016.06.14 |
[AngularJS] 12. 서식(Forms) - Angular JS 강좌 (0) | 2016.06.14 |