web-dev-qa-db-ja.com

AngularJS:サービスからコントローラーにデータを返す

Jsonを取得してhomeCtrlに渡すサービスを作成しようとしていますが、データを取得できますが、homeCtrlに渡すと常に未定義を返します。立ち往生。

私のサービス:

var myService = angular.module("xo").factory("myService", ['$http', function($http){
  return{
    getResponders: (function(response){
      $http.get('myUrl').then(function(response){
         console.log("coming from servicejs", response.data);
      });
    })()
  };
  return myService;
  }
]);

私のホームコントローラー:

var homeCtrl = angular.module("xo").controller("homeCtrl", ["$rootScope", "$scope", "$http", "myService",
function ($rootScope, $scope, $http, myService) {
 $scope.goData = function(){
     $scope.gotData = myService.getResponders;
 };
 console.log("my service is running", $scope.goData, myService);
}]);
8
iceberg

getResponders関数からpromiseを返す必要があります。解決されると、その関数からresponse.dataを返す必要があります。

工場

var myService = angular.module("xo").factory("myService", ['$http', function($http) {
    return {
        getResponders: function() {    
            return $http.get('myUrl')
            .then(function(response) {
                console.log("coming from servicejs", response.data);
                //return data when promise resolved
                //that would help you to continue promise chain.
                return response.data;
            });
        }
    };
}]);

また、コントローラー内でファクトリ関数を呼び出し、.then関数を使用して、getRespondersサービス関数が$http.get呼び出しを解決し、dataを割り当てたときに呼び出します$scope.gotData

コード

 $scope.goData = function(){
     myService.getResponders.then(function(data){
          $scope.gotData = data;
     });

 };
20
Pankaj Parkar

これは私が私のプロジェクトのためにどのようにしたかの一例です、それは私のためにうまくいきます

var biblionum = angular.module('biblioApp', []);//your app
biblionum.service('CategorieService', function($http) {


    this.getAll = function() {

        return $http({
            method: 'GET',
            url: 'ouvrage?action=getcategorie',
            // pass in data as strings
            headers: {'Content-Type': 'application/x-www-form-urlencoded'}  // set the headers so angular passing info as form data (not request payload)
        })
                .then(function(data) {

                    return data;


                })


    }


});

biblionum.controller('libraryController', function($scope,CategorieService) {
  
    var cat = CategorieService.getAll();
    cat.then(function(data) {
        $scope.categories = data.data;//don't forget "this" in the service
    })

  });