我的报告使用基本2000-2500 rows
加载HTML table
,使用大约5-10秒,内容大小约为5MB [根据Chrome网络统计信息]。
现在,当我使用bootstrap classes
实现相同的报告时,它看起来不错,加载相同的报告需要大约25-30秒,内容大小约为25MB。
我用谷歌搜索并找到了相同的原因,并实现了所有这些,如gzip压缩,minified css
,js
。仍然加载时间保持不变我的报告中没有使用的图像只是表格中的文字
<!--Old HTML-->
<div>
<table>
<tr>...nested tables & html simple buttons with no classes</tr>
</table>
</div>
<!--NEW HTML :-->
<div class="row">
<div class="col-lg-n">
<table class="table table-condensed table-hover mytable">
nested tables + bootstrap button
</table>
</div>
</div>
任何帮助将不胜感激。