在用bootstrap table時用到刪除某一行的方法removeByUniqueId, 一直報錯bootstrap-table.js:2427 Uncaught TypeError: Cannot read property 'hasOwnProperty' of undefined
官方文檔就是這樣用的:
$table.bootstrapTable('removeByUniqueId', 1);
,
掙扎一段時間終于找到了原因,在bootstrap table.js源碼中發(fā)現(xiàn)uniqueId未定義
在設(shè)置bootstrap table參數(shù)時加上uniqueId: "id"
即可