我正在尝试在我的项目中实现angular-datatables,但它返回“TypeError:无法读取未定义的属性'aDataSort'
我正在使用
Angular js 1.4.9版。
Jquery版本2.1.1
DataTable版本1.10.10
参考网站
我的Html代码
<div class="col-md-12" ng-controller="WithAjaxCtrl as showCase"> <table datatable="" dt-options="showCase.dtOptions" dt-columns="showCase.dtColumns" class="row-border hover"></table></div>
我的Angular js控制器代码
angular.module( 'admin.package', [
'ui.router',
'ui.bootstrap',
'datatables',
'datatables.bootstrap',
'ngResource',
'plusOne'
]).controller('WithAjaxCtrl', WithAjaxCtrl);
function WithAjaxCtrl(DTOptionsBuilder, DTColumnBuilder,$http,UserService,localStorageService) {
UserService.obj.get('packages/index',localStorageService.get('userkey').token).then(function (results) {
if(results.status==200){
var vm = this;
vm.dtOptions = DTOptionsBuilder.fromSource(results.data.packages)
.withPaginationType('full_numbers');
vm.dtColumns = [
DTColumnBuilder.newColumn('id').withTitle('id'),
DTColumnBuilder.newColumn('package_name').withTitle('Packag Name'),
DTColumnBuilder.newColumn('amount').withTitle('Amount'),
DTColumnBuilder.newColumn('package_duration').withTitle('Amount'),
DTColumnBuilder.newColumn('currency').withTitle('validity')
];
console.log(vm.dtColumns);
console.log( vm.dtOptions);
}else{
alert('You are not a authorized user');
}
}, function(reason) {
console.log(reason);
});
}
提前致谢
答案 0 :(得分:5)
页面加载时,您正在将showCase.dtOptions
和showCase.dtColumns
传递给datatables
指令,但在服务调用完成之后才会声明它们。一种解决方法是使用ng-if
在服务调用之后构造html:
<table ng-if="showCase.authorized" datatable="" ...
然后在你的控制器中,在调用服务之前初始化变量,并在调用完成后更新它:
app.controller('WithAjaxCtrl', function WithAjaxCtrl(DTOptionsBuilder, DTColumnBuilder, UserService) {
var vm = this;
vm.authorized = false;
UserService.get()...
这是一个演示。您可以通过删除ng-if
来重现错误。 http://plnkr.co/edit/XZYOEvgy1HoMYGmGdAYj?p=preview
答案 1 :(得分:1)
请确保您的<th>
在表结构中的<thead>
内。
示例:
<thead>
<tr>
<th> name </th>
<th> email </th>
</tr>
</thead>