本帖最后由 海川 于 2021-5-12 09:11 编辑
合并sheet表格 替换样式名称, excelIo.save 保存报错。不替换样式名称保存正常。json文件附件上传。
var jsons = spread.toJSON();
console.log(JSON.stringify(jsons));
var excelIo = new GC.Spread.Excel.IO();
excelIo.save(jsons, function (blob) {
//json 转换为blob文件saveAs(blob, fileName);
}, function (e) {
alert(e);
});
///===================
temp.getNamedStyles().forEach(function (namedStyle) {
//合并表格注释 替换名称,excelIo.save()保存正常; 启用样式名称替换 excelIo.save()保存报错
namedStyle.name ="__"+_temptablecode + importFlag +namedStyle.name;
spread.addNamedStyle(namedStyle);});
|
|