bootstrap-table 渲染json嵌套数据及使用注意点

json数据

bootstrap-table 渲染json嵌套数据及使用注意点_第1张图片

相应的Js

  {
                    field: 'fileNo',
                    title: '归档号',
                    formatter : function(value,row, index){ 
                        return row.archive.fileNo;
                    }
                },

tips:

1、表头与内容没有对齐,删除掉“height”属性;

2、rows返回的数据是封装时,利用responseHandler获取填充数据

 responseHandler:function(res){
                	return {
                		"total":res.total,
                		"rows":res.rows.record
                	}
                }

 

你可能感兴趣的:(前端)