您的位置:首页 > 运维架构

错误码:Uncaught TypeError: Cannot read property 'field' of undefined

2018-03-18 01:23 1056 查看

错误码:Uncaught TypeError: Cannot read property ‘field’ of undefined

具体错误信息:

Uncaught TypeError: Cannot read property 'field' of undefined
at HTMLTableCellElement.<anonymous> (bootstrap-table.js:506)
at Function.each (jquery-1.11.3.min.js:2)
at m.fn.init.each (jquery-1.11.3.min.js:2)
at HTMLTableRowElement.<anonymous> (bootstrap-table.js:505)
at Function.each (jquery-1.11.3.min.js:2)
at m.fn.init.each (jquery-1.11.3.min.js:2)
at BootstrapTable.initTable (bootstrap-table.js:497)
at BootstrapTable.init (bootstrap-table.js:414)
at new BootstrapTable (bootstrap-table.js:165)
at HTMLTableElement.<anonymous> (bootstrap-table.js:2281)


错误源代码

<table id="table" data-toggle="table">
<tr>
<th class="number title-cell">序号</th>
<th class="name title-cell">产品名称</th>
<th class="kind title-cell">产品种类</th>
<th class="bank title-cell">银行名称</th>
<th class="custorm title-cell">客户属性</th>
<th class="rate title-cell">利率</th>
<th class="year title-cell">贷款年限</th>
<th class="money title-cell">贷款额度</th>
<th class="attribute title-cell">属性列表</th>
<th class="sort title-cell">排序</th>
<th class="operate title-cell">操作</th>
</tr>
</table>


修改后代码

<table id="table" data-toggle="table">
<thead>
<tr>
<th class="number title-cell">序号</th>
<th class="name title-cell">产品名称</th>
<th class="kind title-cell">产品种类</th>
<th class="bank title-cell">银行名称</th>
<th class="custorm title-cell">客户属性</th>
<th class="rate title-cell">利率</th>
<th class="year title-cell">贷款年限</th>
<th class="money title-cell">贷款额度</th>
<th class="attribute title-cell">属性列表</th>
<th class="sort title-cell">排序</th>
<th class="operate title-cell">操作</th>
</tr>
</thead>
</table>


原因

缺少
<thead>


在表格里的
<td>
标签数量与
<th>
的标签数量不一样。

解决方法

确保表格里有
<thead>
标签;

确保表格里的
<td>
数量与
<th>
数量一致。

参考连接

https://www.gyrocode.com/articles/jquery-datatables-common-javascript-console-errors/#typeerror-cannot-read-property-mdata-of-undefined

https://datatables.net/manual/installation#HTML
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  error bootstrap-table
相关文章推荐