猿问

angular 通过服务定义的接口请求数据,请求到的数据为什么在服务外面获取不到

    mainModelHttpService.getHttpGetMainCountModelPromise("", "").success(function(response) {

        $scope.Data = [{

            value: response.Register,

            name: '注册'

        }, {

            value: response.Using,

            name: '使用中'

        }, {

            value: response.Fault,

            name: '故障'

        }, {

            value: response.Scrap,

            name: '报废'

        }];

       console.log( $scope.Data);//这里可以打印出来

    });

    console.log($scope.Data); //undefined

现在很纳闷,请求到的数据是挂到了$scope上,为什么在这个服务外获取不到呢?
应该怎么做才能获取到呢 因为这些数据是在后面指令中要用的

RISEBY
浏览 461回答 1
1回答

慕田峪7331174

控制台应该先打印的undefined后打印的数据吧,ajax的异步回调
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答