如何在外部获得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");
}
}
}]);
첫 번째는 범위 문제입니다. 외부 액세스를 원할 경우 $rootScope.posts=res.records;
를 시도해 보세요.으아악
https://code.angularjs.org/1....$http