gpt4 book ai didi

AngularJS 服务不工作

转载 作者:行者123 更新时间:2023-12-04 16:37:47 25 4
gpt4 key购买 nike

我一直在开发一个简单的 AngularJS 应用程序。我需要为它实现一个名为“countryservice”的自定义服务。以下是我的代码。

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($http);
});

不幸的是,由于某些原因,这段代码不起作用。但想不通为什么。当我在不创建自己的自定义服务的情况下做同样的事情时,它工作正常。以下是未实现自定义服务的代码。这个很好用。

var countryApp = angular.module('countryApp', []);

countryApp.controller('CountryCtrl', function ($scope, $http) {
$http.get('js/countries.json').success(function (data) {
$scope.countries = data;
});
});

任何人都可以帮助我解决我在自定义服务中做错的地方吗?

最佳答案

getallcountries 服务方法应该像这样返回 $http.get 生成的 promise :

var countryApp = angular.module('countryApp', []);

countryApp.service('countryservice', function ($http) {
this.getallcountries = function () {
return $http.get('js/countries.json');
}
});

countryApp.controller('CountryCtrl', function ($scope, countryservice) {
countryservice.getallcountries().success(function(data) {
$scope.countries = data;
});
});

另外,请注意您不必向 Controller 注入(inject) $http 服务。

关于AngularJS 服务不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34090517/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com