v16.0.2 外部链接无法正常显示&&导出问题【SJS-17069】
本帖最后由 Ellia.Duan 于 2023-2-22 11:56 编辑外部链接
您好,在v16版本中,导入excel有如下设置:
此时导入后正常显示结果
如果您导入时设置了”导入时自动计算“,此时将会出现您问题中的图片内容。
Ellia.Duan 发表于 2023-2-20 16:06
您好,在v16版本中,导入excel有如下设置:
此时导入后正常显示结果
sjs怎么设置 jin.ye 发表于 2023-2-21 08:57
sjs怎么设置
导入sjs文件,默认设置即可
Ellia.Duan 发表于 2023-2-21 09:24
导入sjs文件,默认设置即可
在线spreadjs怎么设置 关于导入导出文件中的 配置项可以参考学习指南:
https://en.onboarding.grapecitydev.com/spreadjs/demos/features/spreadjs-file-format/overview/purejs
及相关API文档
https://www.grapecity.com/spreadjs/api/classes/GC.Spread.Sheets.Workbook#import
https://www.grapecity.com/spreadjs/api/classes/GC.Spread.Sheets.Workbook#open
https://www.grapecity.com/spreadjs/api/classes/GC.Spread.Sheets.Workbook#export
https://www.grapecity.com/spreadjs/api/classes/GC.Spread.Sheets.Workbook#save Ellia.Duan 发表于 2023-2-21 10:03
关于导入导出文件中的 配置项可以参考学习指南:
https://en.onboarding.grapecitydev.com/spreadjs/demos ...
哪个参数设置影响在线spreadJs显示外部链接值的 您可以学习下如何查看API文档,
上述链接给出了导入sjs的方法
https://www.grapecity.com/spreadjs/api/classes/GC.Spread.Sheets.Workbook#open
然后点击openOptions
然后可以看到导入设置 参数
其中 fullRecalc参数就是上文 提到的 是否开启导入后自动计算
而导入 excel的参数如上步骤 也可以获取
Ellia.Duan 发表于 2023-2-21 12:02
您可以学习下如何查看API文档,
上述链接给出了导入sjs的方法
https://www.grapecity.com/spreadjs/api ...
excelIo.open(file, json => {
spread.fromJSON(json);
spread.setActiveSheetIndex(0);
}, e => {
bdoErrorBox('失败', e.errorMessage);
}, { fullRecalc: false });
是否如上所示设置open参数?验证无效 您好,v16版本中 修改了excel导入方式,如下代码 所示;
$("#loadExcel").click(function () {
var file = document.querySelector('#selectedFile').files;
if (!file) {
return;
}
spread.import(file, function () {
// alert("load complete");
}, function (e) {
console.log(e); // error callback
}, {
fullRecalc:false,
});
});其中要引入spread-sheets-io组件
import "@grapecity/spread-sheets-io";同时您也可以参考学习指南:
https://en.onboarding.grapecitydev.com/spreadjs/demos/features/spreadjs-file-format/overview/purejs