1、需求:spread加载的excel表格有多个sheet页签和单元格公式,先通过ajax调用后台获取公式中的函数部分取值,返回前台json串后,前台计算后显示结果值
2、问题:加载时前台等待时间太久。用什么方法可在等待时前台显示加载提示信息,知道表格数据结果加载完毕
3、实例代码:
$.ajax({
url: "taxReportAction!findReportByNameAndPeriod",
type: "post",
data: param,
dataType: "json",
async:false,
success: function(data){
jsonstr = data.taxReport.content;
formulastr = data.taxReport.formulastr;
calcFormulastr = data.formulastr;
}
});
spread.fromJSON(JSON.parse(jsonstr), jsonOptions);
|
|