搜尋

首頁  >  問答  >  主體

angular.js - 如何取得angularjs中response的回傳值?

如何在外部獲得response的值?

app.controller('postCtrl', ['$scope', 'myservice', function($scope, myservice){
    myservice.getData().success(function(res){
        $scope.posts = res.records;
        console.log($scope.posts);  //这个有输出
    });
    console.log($scope.posts); //这个却显示undefined

}]);

app.factory('myservice', ['$http', function($http){
    return {
        getData: function(){
            return     $http.get("post_info.php");    
        }
    }
}]);
ringa_leeringa_lee2744 天前670

全部回覆(2)我來回復

  • 淡淡烟草味

    淡淡烟草味2017-05-15 17:11:16

    首先是作用域問題,要想外部存取可以試試$rootScope.posts=res.records;

    回覆
    0
  • phpcn_u1582

    phpcn_u15822017-05-15 17:11:16

    雷雷

    https://code.angularjs.org/1....$http

    回覆
    0
  • 取消回覆