searchbuilding:function(){ var that=this; axios.post("/building/search",{ buildname: this.searchbuildingname, college:this.searchcollege, username:this.searchusername }) .then(function (response) { alert("搜索成功"); $("#table").bootstrapTable('load', response.data.list); alert("搜索"); }),function (err) { alert("搜索失败"); console.log(err); } }这个方法的$("#table").bootstrapTable('load', response.data.list);报错:TypeError: Cannot read properties of undefined (reading 'total') at e.value
时间: 2024-02-14 22:21:06 浏览: 125
Error:in ./node-modules/axios/lib/platform/index.js
这个错误提示是在调用bootstrap-table的load函数时出现的。具体来说是load函数要使用一个undefined的属性'total',导致了TypeError。建议检查代码,看看是否正确地使用了bootstrap-table相关的函数和参数,是否有缺失或者错误。另外,也可以检查一下response.data.list的数据格式是否正确,是否缺失了'total'属性。
阅读全文