angular.js - 如何取得angularjs中response的回傳值?
ringa_lee
ringa_lee 2017-05-15 17:09:16
0
2
667

如何在外部獲得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_lee
ringa_lee

ringa_lee

全部回覆(2)
淡淡烟草味

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

phpcn_u1582

雷雷

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

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板