336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
안녕하세요.
이번에는 angularJS Filter에 대해서 할려고합니다.
밑에 있는 것은 소스코드예요.
사용할만한 형식도 대부분 영어지만 추가해두었어요. 필요한것은 확인해 주세요.
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 |
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<!-- angularJS를 불러옵니다. -->
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<!--
currency Format a number to a currency format.
•date : Format a date to a specified format.
•filter : Select a subset of items from an array.
•json : Format an object to a JSON string.
•limitTo : Limits an array/string, into a specified number of elements/characters.
•lowercase : Format a string to lower case.
•number : Format a number to a string.
•orderBy : Orders an array by an expression.
•uppercase : Format a string to upper case.
•currency : 화폐입니다. 달러로 필터처리를 해줘서 사용자 필터를 추천해드립니다.
-->
<div ng-app="myApp" ng-controller="sampleCtrl">
<!-- lastName에 uppercase(대문자)를 적용합니다. -->
<p>{{ choiceWord | uppercase }}</p>
<!-- lastName에 uppercase(소문자)를 적용합니다. -->
<p>{{ choiceWord | lowercase }}</p>
</div>
<script>
//controller를 생성합니다.
angular.module('myApp', []).controller('sampleCtrl', function($scope) {
$scope.choiceWord = "Car"; //choiceWord에 Car를 넣어줍니다.
});
</script>
</body>
</html>
|
cs |
결과는 CAR
car
감사합니다.
'ANGULARJS > filter' 카테고리의 다른 글
angularJS 사용자 정의함수 Filtering (0) | 2016.06.30 |
---|---|
angularJS filter 검색을 편하게 해주는 filter (0) | 2016.06.30 |