-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex04.html
executable file
·30 lines (27 loc) · 845 Bytes
/
ex04.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
<!doctype html>
<html data-ng-app="workshopBeMEAN">
<head>
<title>{{ workshop }}</title>
</head>
<body>
<!-- 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>
<!-- Utilizamos o valor de nome que está no nosso escopo local -->
Olá mundo, {{ nome }}
<!-- O valor em {{ nome }} é atualizado automagicamente através
do two-way databinding
-->
<label for="workshop">Workshop:
<input type="text" data-ng-model="workshop">
</label>
<script src="angular.min.js"></script>
<script>
angular.module('workshopBeMEAN', []);
</script>
</body>
</html>