未捕获的类型错误:无法设置未定义的 Laravue 的属性“_DT_CellIndex”

时间:2021-03-12 03:45:15

标签: javascript laravel vue.js

我知道这是常见问题,但我找不到解决此问题的方法。我一直在搜索,最常见的问题是 thtd 表不匹配。我一直在用 laravue,我该怎么做才能解决问题?

<块引用>

这东西工作正常,但问题是当我删除至少一列 thtd 时,控制台 DT_CellIndex undefined 中会弹出错误。如果有人能弄清楚就太好了,在此先感谢您!

<块引用>

完整的列它像这样工作正常

enter image description here

<块引用>

但是当我删除至少一列时,错误弹出

enter image description here

        <table class="table table-separate table-head-custom table-checkable" id="kt_datatable1">
        <thead>
            <tr>
                <th>Record ID</th>
                <th>Order ID</th>
                <th>Country</th>
                <th>Ship City</th>
                <th>Ship Address</th>
                <th>Company Agent</th>
                <th>Company Name</th>
                <th>Ship Date</th>
                <th>Status</th>
                <th>Type</th>
              
            </tr>
          </thead>
         <tbody>
            <tr>
                <td>1</td>
                <td>64616-103</td>
                <td>Brazil</td>
                <td>São Félix do Xingu</td>
                <td>698 Oriole Pass</td>
                <td>Hayes Boule</td>
                <td>Casper-Kerluke</td>
                <td>10/15/2017</td>
                <td>5</td>
                <td>1</td>
            </tr>
        </tbody>
    </table>

0 个答案:

没有答案