AngularJS Service not working
问题 I have been developing a simple AngularJS App. I need to implement a custom service named 'countryservice' for it. Following is my code. var countryApp = angular.module('countryApp', []); countryApp.service('countryservice', function ($http) { this.getallcountries = function ($http) { $http.get('js/countries.json').success(function (data) { return data; }); } }); countryApp.controller('CountryCtrl', function ($http, $scope, countryservice) { $scope.countries = countryservice.getallcountries(