为什么我不能用ngTable显示记录

时间:2016-08-11 19:12:55

标签: html angularjs rest ngtable

我试图使用ngTable在html上显示记录。通过rest api从服务器端检索记录。

HTML:

<div class="container">
        <table ng-table="tableParams" class="table" show-filter="false">
            <tr ng-repeat="report in $data">
                <td title="'ReportId'" filter="{ reportid: 'text'}" sortable="'reportid'">
                    {{report.reportid}}</td>
                <td title="'SampleId'" filter="{ sampleid: 'text'}" sortable="'sampleid'">
                    {{report.sampleid}}</td>
                <td title="'MRN'" filter="{ mrn: 'text'}" sortable="'mrn'">
                    {{report.mrn}}</td>
                <td title="'Diagnosis'" filter="{ diagnosis: 'text'}" sortable="'diagnosis'">
                    {{report.diagnosis}}</td>
            </tr>
        </table>
    </div>

Controller.js

ristoreApp.controller("fmCtrl",
    ['$scope', 'fmFactory', 'NgTableParams', function($scope, fmFactory, NgTableParams) {
        $scope.selection = '0';
        $scope.fmSearch = function () {
            if ($scope.selection == '0') {
                $scope.tableParams = new NgTableParams({
                    page: 1,            // show first page
                    count: 10          // count per page
                }, {
                    getData: function (params) {
                        return fmFactory.getAll().then(function(data) {
                            params.total(data.inlineCount);
                            return data.results;
                        });
                    }
                });
                $scope.tableParams.reload();
            }
        }
    }]
)

工厂js

ristoreApp.factory("fmFactory", ['$http', '$window',
    function ($http, $window) {
        var service = {};

        service.getAll = function () {
            var url = SERVER + "/ristore/foundation/";
            return $http({
                headers: {'Authorization': 'Bearer ' + $window.localStorage.getItem("access_token")},
                url: url,
                method: 'GET',
                crossOrigin: true
            })
        }

        return service;
    }]);

工厂肯定会正确地从服务器返回记录,因为当我调试它时,它会显示响应的数据。 resonse

然而,它在页面上没有显示任何内容。出了什么问题?

1 个答案:

答案 0 :(得分:1)

做这些事

  1. 将控制器中的 $scope.tableParams 更改为this.tableParams
  2. 根据<div ng-controller="fmCtrl">
  3. 更改 <div ng-controller="fmCtrl as fm">
  4. 根据ng-table="tableParams"
  5. 更改 ng-table="fm.tableParams"

    文档:http://ng-table.com/#/loading/demo-external-array

    更新1 :更改此类return rmFactory.getAll()

    return fmFactory.getAll().then(function(response) {
        var reports = response.data;
        params.total(reports.length);
        return reports;
    });
    

    更新2 :将此行添加到控制器开头(第一行)

    var self = this;
    

    我们做的第一个改变,就像这样重写。

    self.tableParams
    

    更新3 :我们删除了$scope并使用了this,因为文档正在使用它。 this在这里没有用,因为我们在$scope.fmSearch内。因此,为了获得控制器的这一点,我们将其存储在变量self中并进行访问。您可以将self重命名为您选择的任何名称。