runu
Version:
NodePlusAngularJS
21 lines (19 loc) • 839 B
JavaScript
app.controller("MainController", function MainController($scope, $http){
$scope.testData = [];
$scope.postIt = function() {
//alert("posting...");
// XMLHttpRequest cannot load http://127.0.0.1:1337/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
$http.get('http://127.0.0.1:1337/json.json', {msg:'hello from Angular.js!'})
.success(function onSuccess(response){
console.log(response);
// $scope.$apply(function(){
// $scope.testData = JSON.parse(response);
// console.log($scope.testData);
// });
$scope.testData = response;
//$scope.testData = JSON.parse(response);
}).error(function onError(){
console.log("AJAX failed!");
});
};
});