找回密码
 立即注册

QQ登录

只需一步,快速开始

arron

注册会员

2

主题

3

帖子

15

积分

注册会员

积分
15
  • 49

    金币

  • 2

    主题

  • 3

    帖子

最新发帖
arron
注册会员   /  发表于:2024-9-25 00:00  /   查看:369  /  回复:2
1金币
本帖最后由 Wilson.Zhang 于 2024-9-25 09:16 编辑

const initSpread = (spread) => {
    tableApi.templateFile(params).then((response) => {
       let activeSheetName,
          activeRowIndex,
          activeColumnIndex = null;
       if (spread != null) {
          activeSheetName = spread.getActiveSheet().name();
          activeRowIndex = spread.getActiveSheet().getActiveRowIndex();
          activeColumnIndex = spread
             .getActiveSheet()
             .getActiveColumnIndex();
          spread.destroy();
       }
       const excelIo = new Excel.IO();
       excelIo.open(
          response,
          (json) => {
             console.log(response)
             spread.fromJSON(json);
             if (
                activeSheetName != null &&
                activeRowIndex != null &&
                activeColumnIndex != null
             ) {
                spread.setActiveSheet(activeSheetName);
                let sheet = spread.getActiveSheet();
                sheet.setActiveCell(activeRowIndex, activeColumnIndex);
                sheet.showCell(
                   activeRowIndex,
                   activeColumnIndex,
                   GC.Spread.Sheets.VerticalPosition.center,
                   GC.Spread.Sheets.HorizontalPosition.center
);
             }
             resetDataInf.value = true; //重置数据接口组件的数据
             if (flag.value) {
                //flag = true 只要重新获取数据
                initData_dataIn(dataObject);
             } else {
                //flag = fasle 重新获取全部
                initAll_resources(dataObject);
             }
          },
          (e) => {
             console.log(e);
          }
       );
    })
       .catch((error) => {
          console.log(error);
       });
}


老师提示文件格式错误

老师提示文件格式错误

最佳答案

查看完整内容

您好!参考您提供的代码片段,整理了demo未能复现您图示中的现象,如下动图所示。 我们将demo和测试文件附上,您可以尝试在demo运行后导入您的文件是否还会复现问题。

2 个回复

倒序浏览
最佳答案
最佳答案
Wilson.Zhang
超级版主   /  发表于:2024-9-25 00:00:59
来自 2#
您好!参考您提供的代码片段,整理了demo未能复现您图示中的现象,如下动图所示。
15.2.5 IO.gif

我们将demo和测试文件附上,您可以尝试在demo运行后导入您的文件是否还会复现问题。

Delete Rows Demo.zip

57.78 KB, 下载次数: 3

回复 使用道具 举报
Wilson.Zhang
超级版主   /  发表于:2024-9-29 09:59:54
3#
您好!由于您较长时间未回复,且从跟帖回复中了解到问题已得到有效解答,那就结贴了。如有问题,欢迎发新帖沟通。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部