搜尋

首頁  >  問答  >  主體

angular.js - angularjs 如何在controller中使用service

Service代碼:

app.service('getTicketList', function($q, $http){
    this.data = {};
    this.getData = function(id){
        var deferred = $q.defer();
        var path='ticket.action?method:projectTickets';
        if(id)
            path+='&projectId='+id.toString();
        $http.get(path).then(function(d){
            //success
            this.data = d;
            deferred.resolve(d);
        },function(){
            //failure
            deferred.reject(d);
        });
    }
});

controller代碼:

app.controller('projectController', function($scope,getTicketList) {
    $scope.tickets=getTicketList.getData($scope.projectId).data.tickets;
});

controller的那句程式碼有問題。我用getTicketList.data也取得不到數據,是{}。而且不知道怎麼把參數傳進去。 。 。 。

ringa_leeringa_lee2743 天前738

全部回覆(3)我來回復

  • 巴扎黑

    巴扎黑2017-05-15 16:52:58

    1.service裡面用return代替this

    javascriptapp.service('getTicketList', function ($q, $http) {
      var data = {};
      return {
        getData: function (id) {
          var deferred = $q.defer();
          var path = 'ticket.action?method:projectTickets';
          if (id)
            path += '&projectId=' + id.toString();
          var promise = $http.get(path).then(function (response) {
              return response;
          }, function (response) {
              return response
          });
          return promise;
        }
      }
    });
    

    2.呼叫的時候使用promise模式

    javascriptgetTicketList.getData($scope.projectId).then(
      function (res) {
        $scope.tickets = res.tickets
      }, 
      function (rej) {
      // error handler
      }
    );
    

    回覆
    0
  • 漂亮男人

    漂亮男人2017-05-15 16:52:58

    這種傳遞參數的方式是不對的,沒這麼用過,這裡有個項目,找到對應的controller.service看看
    https://github.com/LittleDouBi/community

    回覆
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-15 16:52:58

    你應該使用promise模式:

    app.service('getTicketList', function ($q, $http) {
      this.data = {};
      this.getData = function (id) {
        var deferred = $q.defer();
        var path = 'ticket.action?method:projectTickets';
        if (id) {
          path += '&projectId=' + id.toString();
        }
        return $http.get(path).then(function (d) {
          this.data = d;
          return $q.when(d);
        }, function (d) {
          return $q.reject(d);
        });
      }
    });
    
    app.controller('projectController', function ($scope, getTicketList) {
      getTicketList.getData($scope.projectId).then(function (res) {
        $scope.tickets = res.tickets
      }, function (rej) {
        // error handler
      });
    });
    

    回覆
    0
  • 取消回覆