16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
var app = angular.module("app", []);
|
|
|
|
app.controller("mates", ["$scope", "$http", function($scope, $http)
|
|
{
|
|
$scope.mates = 0;
|
|
|
|
$scope.countClick = () =>
|
|
{
|
|
$http.post("/mates")
|
|
.then((r) =>
|
|
{
|
|
$scope.mates = angular.fromJson(r.data).mates;
|
|
})
|
|
}
|
|
}]);
|