我们的团队正在ServiceNow中构建表小部件,并决定尝试ngTable。我们已经加载了依赖项,并通过github站点上的示例测试了它能否正确呈现。现在,我们要从服务器脚本中名为data.onbCase的对象数组中加载数据。但是,当我们尝试以这种方式加载数据时,会在控制台中收到一条错误消息,提示:
TypeError:无法读取未定义的属性“ length”
在我们的客户端脚本中,我们共有:c.onbCase.length,并且不确定为什么会产生错误。我们在这里缺少什么吗?
<div class="panel panel-default" style="margin-bottom:200px;">
<div class="panel-heading">
<span class="panel-title"><i class="fa fa-{{c.glyph}}" aria-hidden="true"></i> {{c.title}}</span>
</div>
<div class="panel-body" ng-if="c.data.loading">
<span><i class="fa fa-spinner fa-spin fa-3x fafw"></i>
<span class="sr-only">Loading...</span>
</span>
</div>
<div class="panel-body table-responsive" ng-if="!c.data.loading">
<h4 ng-if="c.options.filter">Table Filter: {{c.options.filter}}</h4>
<table id="print_table" class="display table table-striped table-hover" ng-table ="usersTable" show-filter=true>
<tr ng-click="c.onWidget('batch_qa_form_list',item.sys_id, item.short_description);"
ng-repeat="item in c.onbCase track by $index"
ng-if="item.case_visible">
<td ng-show="c.options.case_number" data-title="{{item.number}}" sortable="'number'" filter="{ 'number': 'text' }">{{item.number}}</td>
<td ng-show="c.options.last_name" data-title="{{item.last_name}}" sortable="'last_name'" filter="{ 'last_name': 'text' }">{{item.last_name}}</td>
<td ng-show="c.options.first_name" data-title="{{item.first_name}}" sortable="'first_name'" filter="{ 'first_name': 'text' }">{{item.first_name}}</td>
<td ng-show="c.options.case_short_description" data-title="{{item.short_description}}" sortable="'short_description'" filter="{ 'short_description': 'text' }">{{item.short_description}}</td>
<td ng-show="c.options.start_date" data-title="{{item.start_date}}" sortable="'start_date'" filter="{ 'start_date': 'text' }">{{item.start_date | date:'shortDate':'Z'}}</td>
<td ng-show="c.options.work_location" data-title="{{item.location}}" sortable="'location'" filter="{ 'location': 'text' }">{{item.location}}</td>
<td ng-show="c.options.form_review_status" data-title="{{item.form_review_status}}" sortable="'all_approved'" filter="{ 'all_approved': 'text' }">
<i ng-if="item.all_approved=='All Forms Reviewed'" class="fa fa-check-circle fa-lg success"></i>
<i ng-if="item.all_approved=='Pending Review'" class="fa fa-exclamation-circle fa-lg warning" uib-tooltip="{{item.number_pending}} items pending review" tooltip-placement="left" title=""></i>
</td>
</tr>
</table>
</div>
</div>
function($scope, spUtil, spModal, $filter, ngTableParams) {
var c = this;
//Set value to show loading spinner
c.data.loading = true;
function initialize() {
c.server.get({
action: 'retrieve_data'
}).then(function(response) {
//Set value to hide loading spinner
c.data.loading = false;
//Get link data
c.onbCase = response.data.onbCase;
});
}
initialize();
$scope.usersTable = new ngTableParams({
page: 1,
count: 5
}, {
total: c.onbCase.length,
getData: function ($defer, params) {
$scope.data = params.sorting() ? $filter('orderBy')(c.onbCase, params.orderBy()) : c.onbCase;
$scope.data = params.filter() ? $filter('filter')($scope.data, params.filter()) : $scope.data;
$scope.data = $scope.data.slice((params.page() - 1) * params.count(), params.page() * params.count());
$defer.resolve($scope.data);
}
});
spUtil.recordWatch($scope, "x_dnf_federal_hr_o_federal_form_review", "", function(name, data) {
initialize();
});
}
答案 0 :(得分:0)
这是一个不了解JS promise的顺序或操作的经典示例。您的ngTable
初始化将在返回数据之前被调用。
问题是您拨打ngTableParams()
后直接打了对server.get
的电话。您不希望在控件移至.then()
响应内之前运行它。为此,您可以将new ngTableParams()
调用包装在一个函数中,并在服务器调用完成后对其进行调用。这是构建代码的正确方法:
function initialize() {
c.server.get({
action: 'retrieve_data'
}).then(function(response) {
//Set value to hide loading spinner
c.data.loading = false;
//Get link data
c.onbCase = response.data.onbCase;
// don't run the ngTable init until the http call has returned
ngTableInit();
});
}
initialize();
//wrap your ngTableParams constructor in a function
function ngTableInit() {
$scope.usersTable = new ngTableParams({
page: 1,
count: 5
}, {
total: c.onbCase.length,
getData: function ($defer, params) {
...
}
});
}
如果您使用原始代码在浏览器的调试器中设置断点,则会看到$scope.usersTable = new ngTableParams({...})
在服务器调用返回之前就已经被调用,并且c.onbCase
未定义。