数据表访问ajax数据问题

时间:2014-06-09 05:45:33

标签: jquery ajax datatables

您好我正在尝试实现数据表示例,并在访问示例数据时被阻止。

Here is the fiddle where I got blocked

Here is data tables working example from site

$(document).ready(function() {
    var table = $('#example').DataTable( {
        "ajax": "../ajax/data/objects.txt",
        "columns": [
            {
                "class":          'details-control',
                "orderable":      false,
                "data":           null,
                "defaultContent": ''
            },
            { "data": "name" },
            { "data": "position" },
            { "data": "office" },
            { "data": "salary" }
        ],
        "order": [[1, 'asc']]
    } );

2 个答案:

答案 0 :(得分:2)

您正在使用文本文件中的ajax数据源,并希望再次显示来自javascript源的数据。然后你必须尝试像https://datatables.net/examples/data_sources/js_array.html 正如sakir建议的那样,数据表有四个数据源。根据您的要求使用其中任何一个

//see here
https://datatables.net/examples/data_sources/
https://datatables.net/examples/data_sources/js_array.html

答案 1 :(得分:0)

您提供的链接,有不同的数据源类型

有些人喜欢这样。

Data sources

    HTML (DOM) sourced data
    Ajax sourced data
    Javascript sourced data
    Server-side processing

我猜您需要使用Javascript sourced data正确运行您的示例,因为您将其视为javascript数据