I have encountered an issue with my Angular Js app when attempting to retrieve json data from my web server (which is created using codeigniter). It seems that while other urls provide the expected json data response, mine does not.
Here is the Angular js code I am using:
.controller('DashCtrl', function($scope, $http) {
$http.get('http://appbackend.wrappic.nl/')
.success(function(data, status, headers, config) {
})
.error(function(data, status, headers, config) {
// log error
console.log("Error");
});
});
Thank you in advance for any assistance!