Created
June 27, 2017 21:16
-
-
Save Kamilnaja/1b4e9d0f325d2ea2c2b7533b66075cea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('my-app', []) | |
.controller('myCtrl', function ($scope, $http) { | |
$scope.myFunc = function () { | |
console.log($scope.boxes); | |
// $http.post('index.php', JSON.stringify($scope.boxes)); | |
var request = $http({ | |
method: "post", | |
url: window.location.href + "index.php", | |
data: { | |
boxes: $scope.boxes | |
}, | |
headers: { | |
'Content-Type': 'application/x-www-form-urlencoded' | |
} | |
}); | |
request.then(function(data) { | |
console.log("success"); | |
}); | |
}; | |
$scope.boxes = { | |
check1: false, | |
check2: false | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment