bootstrap-table.min.js:10 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'total') at e.value (bootstrap-table.min.js:10:96895) at HTMLTableElement.<anonymous> (bootstrap-table.min.js:10:113747) at Function.each (jquery.min.js:2:2976) at S.fn.init.each (jquery.min.js:2:1454) at t.fn.bootstrapTable (bootstrap-table.min.js:10:113507) at building.js:33:33 value @ bootstrap-table.min.js:10 (anonymous) @ bootstrap-table.min.js:10 each @ jquery.min.js:2 each @ jquery.min.js:2 t.fn.bootstrapTable @ bootstrap-table.min.js:10 (anonymous) @ building.js:33 Promise.then (async) searchbuilding @ building.js:31 invokeWithErrorHandling @ vue.js:3700 invoker @ vue.js:1529 original_1._wrapper @ vue.js:8013
时间: 2024-04-01 14:33:26 浏览: 233
respond.min.js 1.4.2
这个错误提示是在使用bootstrap-table时出现的。具体来说是在调用bootstrap-table的value函数时出现了错误,因为value函数要使用一个undefined的属性'total',导致了TypeError。建议检查代码,看看是否正确地使用了bootstrap-table相关的函数和参数,是否有缺失或者错误。另外,也可以检查一下数据源是否正确,是否缺失了'total'属性。
阅读全文