来自csv文件的Jquery数据表

时间:2012-07-25 05:31:40

标签: jquery datatable

我正在尝试使用php从csv文件填充我的Jquery Dtable来解析csv,然后尝试使用Dtable进行渲染,但似乎不起作用(

TypeError: nCell is undefined
[Break On This Error]   nCell.className += ' '+oCol.sClass; 

)。让它运作的其他解决方法是什么?

<script type="text/javascript" charset="utf-8">
            $(document).ready(function() {
                $('#result_table').dataTable();
            } );
</script>


<?php 
echo "
<table cellpadding='0' cellspacing='0' border='0' class='display' id='result_table' width='100%'>
            <thead>
                <th>Zeit</th>
                <th>Level</th>
                <th>Message</th>
                <th>Refferer</th>         
            </thead>\n\n";
$f = fopen("../logfile.csv", "r");
while (($line = fgetcsv($f)) !== false) {
        echo "<tr>";
        foreach ($line as $cell) {
                echo "<td>" . htmlspecialchars($cell) . "</td>";
        }
        echo "<tr>\n";
}
fclose($f);
echo "\n    <tfoot>
        <tr>
                <th>Zeit</th>
                <th>Level</th>
                <th>Message</th>
                <th>Refferer</th>     
        </tr>
    </tfoot></table>";
?>

1 个答案:

答案 0 :(得分:0)

根据上面的评论,您似乎缺少标签。

<tbody>
</tbody>

我会在读取CSV后检查Firebug或View Source中的HTML输出,以确保它是一个有效的表。