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上,为什么在这个服务外获取不到呢?应该怎么做才能获取到呢 因为这些数据是在后面指令中要用的
添加回答
举报
0/150
提交
取消