Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created June 27, 2017 21:16
Show Gist options
  • Save Kamilnaja/1b4e9d0f325d2ea2c2b7533b66075cea to your computer and use it in GitHub Desktop.
Save Kamilnaja/1b4e9d0f325d2ea2c2b7533b66075cea to your computer and use it in GitHub Desktop.
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