0

我正在使用 datatables 插件来用我的数据格式化我的表格。

  • 我从控制器调用我的模型以收集所有数据。
  • 我将数据数组发送到视图文件。
  • 我在视图中使用 datatable 类开始一个 table 标记,该类调用插件将常规 html 表转换为 datatables 表。
  • 我检查以验证视图中的数组中是否有数据,然后如果有,我会执行一个 foreach 循环来创建表行。如果没有数据,那么我会回显出一串未找到数据。

我的问题是当有数据时它工作正常但是当没有数据时我收到Requested Unknown Parameter 1 from the data source for row 0错误消息。

我之前见过其他人遇到过同样的问题,但是我看到的所有其他帖子都解释说他们在专门使用 datatables 插件时使用了 datatables json 数据。

有关如何防止显示此错误消息的任何想法。

<table class="dynamicTable table table-striped table-bordered table-condensed">
    <thead>
        <tr>
            <th style="width: 1%;" class="uniformjs" id="checkboxth"><input type="checkbox" /></th>
            <th class="center">ID</th>
            <th>Name</th>
            <th class="center">Date</th>
            <th class="center" id="created_updated"></th>
            <th class="right" id="actions">Actions</th>
        </tr>
    </thead>
    <tbody>
        <?php
        //vardump($themes);
        if (isset($themes) && is_array($themes))
        {
            foreach ($themes AS $theme)
            {
                echo '<tr class="selectable">';
                echo '<td class="center uniformjs"><input type="checkbox" /></td>';
                echo '<td class="center">' . $theme->id . '</td>';
                echo '<td>' . $theme->name . '</td>';
                if ($theme->updated_at != '0000-00-00 00:00:00')
                {
                    echo '<td class="center" style="width: 80px;">' . date('d M Y', strtotime($theme->created_at)) . '</td>';
                    echo '<td class="center" style="width: 80px;"><span class="label label-block label-inverse">updated</span></td>';
                }
                else
                {
                    echo '<td class="center" style="width: 80px;">' . date('d M Y', strtotime($theme->created_at)) . '</td>';
                    echo '<td class="center" style="width: 80px;"><span class="label label-block label-important">created</span></td>';
                }

                echo '<td class="center" style="width: 60px;">';
                echo '<a href="' . base_url() . 'themes/edit/' . $theme->id . '" class="btn-action glyphicons pencil btn-success"><i></i></a>';
                echo '<a href="' . base_url() . 'themes/delete/' . $theme->id . '" class="btn-action glyphicons remove_2 btn-danger"><i></i></a>';
                echo '</td>';
                echo '</tr>';
            } 
        }
        else
        {
            echo '<tr>';
            echo '<td class="center" colspan="7">There are no themes.  Select Add a New Theme.</td>';
            echo '</tr>';
        }
        ?>
    </tbody>
</table>

这是主题附带的代码。

/* DataTables */
if ($('.dynamicTable').size() > 0)
{
    $('.dynamicTable').dataTable({
        "sPaginationType": "bootstrap",
        "sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
        "oLanguage": {
            "sLengthMenu": "_MENU_ records per page"
        }
    });
}
4

1 回答 1

2

嗨,请从您的代码中删除 else 条件。然后您的代码将如下所示:

<table class="dynamicTable table table-striped table-bordered table-condensed">
    <thead>
        <tr>
            <th style="width: 1%;" class="uniformjs" id="checkboxth"><input type="checkbox" /></th>
            <th class="center">ID</th>
            <th>Name</th>
            <th class="center">Date</th>
            <th class="center" id="created_updated"></th>
            <th class="right" id="actions">Actions</th>
        </tr>
    </thead>
    <tbody>
        <?php
        //vardump($themes);
        if (isset($themes) && is_array($themes))
        {
            foreach ($themes AS $theme)
            {
                echo '<tr class="selectable">';
                echo '<td class="center uniformjs"><input type="checkbox" /></td>';
                echo '<td class="center">' . $theme->id . '</td>';
                echo '<td>' . $theme->name . '</td>';
                if ($theme->updated_at != '0000-00-00 00:00:00')
                {
                    echo '<td class="center" style="width: 80px;">' . date('d M Y', strtotime($theme->created_at)) . '</td>';
                    echo '<td class="center" style="width: 80px;"><span class="label label-block label-inverse">updated</span></td>';
                }
                else
                {
                    echo '<td class="center" style="width: 80px;">' . date('d M Y', strtotime($theme->created_at)) . '</td>';
                    echo '<td class="center" style="width: 80px;"><span class="label label-block label-important">created</span></td>';
                }

                echo '<td class="center" style="width: 60px;">';
                echo '<a href="' . base_url() . 'themes/edit/' . $theme->id . '" class="btn-action glyphicons pencil btn-success"><i></i></a>';
                echo '<a href="' . base_url() . 'themes/delete/' . $theme->id . '" class="btn-action glyphicons remove_2 btn-danger"><i></i></a>';
                echo '</td>';
                echo '</tr>';
            } 
        }
       /* else
        {
            echo '<tr>';
            echo '<td class="center" colspan="7">There are no themes.  Select Add a New Theme.</td>';
            echo '</tr>';
        }*/
        ?>
    </tbody>
</table>

希望它会起作用。因为数据表会自动处理表中的任何数据。

于 2013-08-28T19:41:51.403 回答