(排坑) Cannot create property 'key' on boolean 'true'

Meriodas發表於2019-07-11

今天用Layui開發的時候突然遇到一個表格渲染出錯的問題。js報錯 Uncaught TypeError: Cannot create property 'key' on boolean 'true' , 原始碼壓縮後我是看不懂,後面搜社群的時候找到問題所在,文件 cols: [] 不行 用示例的 [[ ]] 解決。 權引用自 Fly社群

例子

var tableIn = table.render({
···省略···
cols: [
{field: 'id', title: '{:lang("id")}', width: 80, fixed: true},
{field: 'title', title: '公告名稱', width: 400,templet: '#title'},
],
···省略···
});
//改成
var tableIn = table.render({
···省略···
cols: [[
{field: 'id', title: '{:lang("id")}', width: 80, fixed: true},
{field: 'title', title: '公告名稱', width: 400,templet: '#title'},
]],
···省略···
});

K'

相關文章