-
Notifications
You must be signed in to change notification settings - Fork 0
/
16.Lesson_ng-submit.html
65 lines (35 loc) · 1.52 KB
/
16.Lesson_ng-submit.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>13.Lesson_ng-submit</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular.min.js"></script>
<script>
var ControllerExample = angular.module("myapp", []);
ControllerExample.controller("mycontrol", function ($scope, $http) {
$scope.bilgiGonder = function () {
//$http.post(url).then("Dönencevap")
$scope.data = { "userId": 1, "ID": $scope.userID, "MAIL": $scope.userMail };
$http.post("https://jsonplaceholder.typicode.com/todos", $scope.data).then(function (donenDeger) {
$scope.cevap = donenDeger.data;
})
}
});
</script>
</head>
<!--
♦ ng-submit = "" : Açısal ifadeleri onSubmit olayına bağlamaya yarar. Diğer bir değişle submit butonuna tıklandığında form için bir işlev belirlenir.
Formda eksik uygulanmış bir eylem varsa form gönderilmeden durdurulacaktır.
SYNTAX:
<form ng-submit="expression"></form>
-->
<body ng-app="myapp" ng-controller="mycontrol">
<form name="myform" ng-submit="bilgiGonder()">
<input type="text" ng-model="userID" placeholder="Kullanıcı Adı">
<input type="email" ng-model="userMail" placeholder="Mail Adresi">
<button ng-click="">Giriş Yap</button>
</form>
{{cevap}}
</body>
</html>