20

使用 Angular Grid,我在 console.log 中获取了 ajax 获取数据。但是一个空的网格。

控制台日志显示:

[13:56:11.411] now!!
[13:56:11.412] []
[13:56:11.412] now!!
[13:56:11.556]  <there is data returned from console.log(getData); > 

这是.js文件。

// main.js
var app = angular.module('myApp', ['ngGrid']);

var getData = [];

function fetchData() {
    var mydata = [];

    $.ajax({
        url:'/url/to/hell',
        type:'GET',
        success: function(data) {

            for(i = 0, j = data.length; i < j; i++) {
                mydata[i] = data[i];
            }
            getData = mydata;
            console.log(getData);
        }
    });    
 }
fetchData();     


app.controller('MyCtrl', function($scope) {    

    console.log('now!!')
    console.log(getData)
    console.log('now!!')

    $scope.myData = getData


    $scope.gridOptions = { 
        data: 'myData',
        showGroupPanel: true
    };
});

新的 Js 文件:

// main.js

var app = angular.module('myApp', ['ngGrid']);

app.controller('MyCtrl', function($scope, $http) {          
function fetchData() {
    $http({
        url:'/url/to/hell',
        type:'GET'})
        .success(function(data) {
            $scope.myData = data;       
            $scope.gridOptions = { 
                    data: 'myData',
                    showGroupPanel: true
                };              
        });         
}   
fetchData();    
});

HTML 文件。

<html ng-app="myApp">
        <head lang="en">
            <meta charset="utf-8">
            <title>Blank Title 3</title>  
            <link rel="stylesheet" type="text/css" href="http://angular-ui.github.com/ng-grid/css/ng-grid.css" />
            <link rel="stylesheet" type="text/css" href="../static/css/style.css" />
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
            <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.min.js"></script>
            <script type="text/javascript" src="http://angular-ui.github.com/ng-grid/lib/ng-grid.debug.js"></script>
            <script type="text/javascript" src="../static/js/main.js"></script>
        </head>

        <body ng-controller="MyCtrl">

            <div class="gridStyle" ng-grid="gridOptions"></div>
        </body>
    </html>
4

2 回答 2

26

如果您为您的请求定义了一个服务,这将更容易(并且更 Angular)。这些方面的东西:

angular.module('hellServices', ['ngResource'])
  .factory('Hell', function ($resource) {
    return $resource('URL/TO/HELL', {}, {
      query: { method: 'GET' }
    });
  });

确保将其包含在您的应用中:

var app = angular.module('myApp', ['ngGrid', 'hellServices']);

然后你可以在你的控制器中得到一个承诺:

app.controller('MyCtrl', function($scope, $http, Hell) {  
$scope.myData = Hell.query();

然后设置网格选项以查看其数据的承诺(正如您已经做过的那样):

$scope.gridOptions = { 
    data: 'myData',
    showGroupPanel: true
};

如果你这样做,你不必担心 $scope.$apply 因为它会为你处理。这更清洁,更容易遵循。如果从服务器返回数据后仍需要回调来修改数据,请将函数传递给query()服务的函数:

...
$scope.myData = Hell.query(function(hell) {
    // code that modifies 'hell'
});

查看有关 Angular 服务的官方文档。Angular JS 官方教程的第 11 步也介绍了基础知识。

于 2013-03-06T18:13:38.090 回答
13

您的控制器可能在 .success 完成之前访问 getData 数组。您正在立即访问该变量,在 Promise 函数之外,该函数已初始化为一个空数组。

您为什么不尝试将 fetchData 函数放入控制器(现在)并将 getData 直接存储到 .success 中的 $scope.myData 中?也许甚至在那里初始化网格?不知道你是否可以这样做,但如果可以的话,它看起来像这样:

app.controller('MyCtrl', function($scope, $http) {  
$scope.myData = '';
$scope.gridOptions = { showGroupPanel: true, data: 'myData' };
function fetchData() {
    setTimeout(function(){  
        $http({
            url:'/url/to/hell',
            type:'GET'})
            .success(function(data) {
                $scope.myData = data;   
                if (!$scope.$$phase) {
                    $scope.$apply();
                }                   
            });         
    }, 3000);       
}   
fetchData();    
});

(一些 $scope 应用程序的来源:https ://github.com/angular-ui/ng-grid/issues/39 )

也不确定你为什么在 jQuery .ajax 中混合使用角度代码($http 会这样做),以及为什么你的 javascript 都没有分号。

于 2013-02-27T19:50:48.093 回答