AngularJS ngtable无法正确显示数据

时间:2017-09-04 05:55:11

标签: javascript html angularjs ngtable

我有一个ngTable,它载有从" Get"打电话给webapi。然后我重新加载表,但数据没有显示。

这是* .js文件

rdapp.controller('scoringTableCtrl', ['$location', '$scope', '$http', 'ngTableParams', '$filter',
function($location, $scope, $http, ngTableParams, $filter) {
    $scope.teamList = [];
    $http({
        method: 'GET',
        url: 'http://localhost:34592/api/scoringTable',
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
        }
    }).then(function(success) {
        $scope.teamList = success.data;
        addFieldsForSorting();
        $scope.dataTable.reload();
    }, function(error) {
        console.log(error);
    });
    $scope.resolveHTML = function(position) {
        if (position == 1 || position == 2 || position == 3) return 'champions';
        if (position == 4) return 'champions-prev';
        if (position == 5 || position == 6) return 'europa-league';
        if (position == 18 || position == 19 || position == 20) return 'decline';
        return '';
    }

    function addFieldsForSorting() {
        // Add named properties for every stat value in recipients array, used for sorting the grid.
        // Take value from vitalStats array, use alertIds to match between alpha keys and numeric keys.
        $scope.teamList.forEach(function(team) {
            for (var property in team) {
                if (!team.hasOwnProperty(property)) {
                    continue;
                }
                if (property == 'name') {
                    continue;
                }
                if (property == 'position') {
                    continue;
                }
                var prop = 'sort_' + property;
                team[prop] = -(team[property]);
            }
            team['sort_name'] = team.name;
            team['sort_position'] = team.position;
        });
    }
    $scope.dataTable = new ngTableParams({
        page: 1, // show first page
        count: 20, // count per page
        sorting: {
            sort_position: 'asc' // initial sorting
        }
    }, {
        counts: [],
        total: $scope.teamList.length, // length of data
        getData: function($defer, params) {
            // use build-in angular filter
            var requestData = $scope.teamList;
            var orderedData = params.sorting() ? $filter('orderBy')(requestData, params.orderBy()) : requestData;
            params.total(orderedData.length); // set total for recalc pagination
            $defer.resolve(orderedData.slice((params.page() - 1) * params.count(), params.page() * params.count()));
        }
    });
}
 ]);

这是我的HTML:

<div class="position-view" style="position:relative; top:100px;">
<table ng-table="dataTable" class="table table-bordered table-border-important" ng-class="rec_spinner">
    <tbody class="text-center">{{$data.length}}
        <tr ng-repeat="team in $data">
            <td class="{{resolveHTML(team.position)}}" data-title="''" sortable="'sort_position'">
                {{team.position}}
            </td>
            <td data-title="'Clasificación'" sortable="'sort_name'">
                {{team.name}}
            </td>

            <!--Total Stats-->
            <td data-title="'PJ'" sortable="'sort_pj'">
                {{team.pj}}
            </td>
            <td data-title="'PG'" sortable="'sort_pg'" >
                {{team.pg}}
            </td>
            <td data-title="'PE'" sortable="'sort_pe'" >
                {{team.pe}}
            </td>
            <td data-title="'PP'" sortable="'sort_pp'" >
                {{team.pp}}
            </td>
            <td data-title="'GF'" sortable="'sort_gf'">
                {{team.gf}}
            </td>
            <td data-title="'GC'" sortable="'sort_gc'">
                {{team.gc}}
            </td>
            <td data-title="'PT'" sortable="'sort_pt'">
                {{team.pt}}
            </td>


        </tr>
    </tbody>
</table>

$ data没有任何数据,但如果我尝试{{dataTable}}我已正确加载所有数据。任何人都可以帮我解决这个问题吗?也许有一些显而易见的事情我可能会遗漏,但关键是表格无论如何都会产生行数和列数,但是很空,这很奇怪。

2 个答案:

答案 0 :(得分:0)

我认为你不是在任何地方存储$ data。我在你的js文件中找不到$ scope.data。

答案 1 :(得分:0)

经过长时间的搜索,我发现问题很简单,就是关于CamelCase表示法。问题是当您从Web api发送信息时,如果您没有为参数设置自定义表示法,它们将以首字母大写发送。 所以,我们在这里有两个选择,建立自定义符号或只是在我们的HTML中使用首字母大写。我希望这将有助于将来的某个人!