-1

给定这个http请求:

    $scope.obj = {}

    $scope.loadTourInfo = function() {
    var httpRequest = $http({
        method: 'GET',
        url: 'https://s3.amazonaws.com/mirror.discoverhawaiitours.com/activity_object_json/11204.json'
      }).success(function(data) {
        $scope.obj = data;
    });
}

如何在我的函数范围之外传递返回的对象(数据)?

4

1 回答 1

0

这与变量提升无关。$scope是在成功功能的范围内,所以你正在做的应该可以正常工作。

于 2013-09-27T01:54:25.110 回答