-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex05.html
executable file
·47 lines (37 loc) · 1.17 KB
/
ex05.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
<!doctype html>
<html data-ng-app="workshopBeMEAN">
<title>{{ workshop }}</title>
<body>
<p>
<!-- Para utilizarmos um filtro usamos o |
nesse caso estamos usando o filtro de uppercase
que coloca em maiúsculo e o reverseString criado por nós
-->
<h3>Olá mundo, {{ nome | reverseString | uppercase }}</h3>
<!-- Adicionamos um input para inserirmos um valor para nome
adicionamos o atributo nd-model para linkarmos o valor
na váriavel do nosso escopo local $scope.nome
-->
<label for="nome">Seu nome:
<input type="text" data-ng-model="nome">
</label>
<!-- O valor em {{ nome }} é atualizado automagicamente através
do two-way databinding
-->
<br>
<label for="workshop">Workshop:
<input type="text" data-ng-model="workshop">
</label>
</p>
<script src="angular.min.js"></script>
<script>
angular.module('workshopBeMEAN', [])
.filter('reverseString', function () {
return function (text) {
if(text)
return text.split("").reverse().join("");
};
});
</script>
</body>
</html>