Bootstrap

bootstrapTable处理符合的数据格式

不符合格式的数据不显示,所有我们要处理后端返回的数据为:
row:{[]}
total:
我们在responseHandler中处理,代码如下:

responseHandler: function(res) {
            return {
                "total": res.data.length,//总页数
                "rows": res.data //数据
            };
        },
        onLoadSuccess: function (data) {
        },
;