angularjs – 如何使用具有angular-datatables的本地JSON对象

前端之家收集整理的这篇文章主要介绍了angularjs – 如何使用具有angular-datatables的本地JSON对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想这样做:
testdata = [{"id":"58",...}]; // local object

$('#test').dataTable({
    "aaData": testdata,"aoColumns": [
        { "mDataProp": "id" }
    ] });

使用angular-datatables模块.我试过这个:

调节器

$scope.dtOptions = DTOptionsBuilder.fromSource('[{"id": 1}]')
        .withDataProp('data')
        .withBootstrap()
        .withPaginationType('full_numbers');
$scope.dtColumns = [
        DTColumnBuilder.newColumn('id').withTitle('ID')
];

视图

<table datatable="" dt-options="dtOptions" dt-columns="dtColumns" class="table table-striped table-bordered"></table>

但它根本不起作用,我收到此错误消息:

DataTables warning: table id=DataTables_Table_0 – Ajax error. For more information about this error,please see 07000

另外,我不能使用任何Ajax选项从URL获取json数据,因为我的angularjs项目使用Express和Rest API,所以在尝试使用GET / POST URL获取数据时,我得到401未授权错误/ API /数据/ getJsonData”.

有任何想法吗 ?谢谢.

您不能使用.fromSource,因为它始终会执行ajaxUrl请求.但您可以使用.fromFnPromise()代替.将您的JSON放入一个返回deferred.promise的函数中.
原文链接:https://www.f2er.com/angularjs/143724.html

猜你在找的Angularjs相关文章