运算符“<”不能应用于具有 Excel Add-In 的类型 'number' 和 'Promise<void>'

Operator '<' cannot be applied to types 'number' and 'Promise<void>' with an Excel Add-In

我正在制作一个 Excel add-in,我想将 Excel 中的电子表格数据转换为 Javascript 中的二维数组,但我做不到获取要转换的数据,但我一直无法弄清楚如何修复它,我该如何修复承诺,以便函数 returns 成为一个数字。 getData 函数也存在此问题。

这是在 taskpane.js 上 Excel add-in。我试过 .then(),在变量之前等待,然后让,但我无法让它工作。

import { get } from "http";

/*
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

import { get } from "http";

/*
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

Office.onReady(info => {
  // Determine if the user's version of Office supports all the Office.js APIs that are used in the tutorial.
  if (!Office.context.requirements.isSetSupported('ExcelApi', '1.7')) {
    console.log('Sorry. The tutorial add-in uses Excel.js APIs that are not available in your version of Office.');
  }

  // Assign event handlers and other initialization logic.
  document.getElementById("run").onclick = run;
  if (info.host === Office.HostType.Excel) {
    document.getElementById("sideload-msg").style.display = "none";
    document.getElementById("app-body").style.display = "flex";
  }
});

function Create2DArray(rows) {
  var arr = [];

  for (var i = 0; i < rows; i++) {
    arr[i] = [];
  }

  return arr;
}

function sortedData() {
  var rows = getRowCount();
  var arrImport = getData();
  var arrExport = Create2DArray(rows);
  for (var r = 0; r < rows; r++) {
    arrExport[r][0] = arrImport[r][1];//money
    arrExport[r][1] = arrImport[r][5];//Company
    arrExport[r][2] = arrImport[r][0];//date
  }
  return arrExport;
}

async function getRowCount() {
  await Excel.run(async (context) => {
    const sheet = context.workbook.worksheets.getActiveWorksheet();
    var rowCount = 0;

    for (var i = 0; i >= 0; i++) {
      var cell = sheet.getCell(i, 0);
      cell.load("address, values");
      await context.sync();
      if (cell.values[0][0] == "") {
        break;
      }
      else {
        rowCount++;
      }
    }
    await context.sync();
    return rowCount;
  });
}

async function getData() {
  await Excel.run(async (context) => {
    const sheet = context.workbook.worksheets.getActiveWorksheet();
    //let rowCount = await getRowCount();
    var rowCount = getRowCount();
    var arrExport = Create2DArray(rowCount);

    for (var r = 0; r < rowCount; r++) {
      for (var c = 0; c < 5; c++) {
        var cell = sheet.getCell(r, c);
        cell.load("address, values");
        await context.sync();
        arrExport[r][c] = cell.values[0][0];
      }
    }
    await context.sync();
    return arrExport;
  })
}

async function run() {
  await Excel.run(async (context) => {
      var currentWorksheet = context.workbook.worksheets.getActiveWorksheet();
      rows = getRowCount();
  })
  .catch(function (error) {
      console.log("Error: " + error);
      if (error instanceof OfficeExtension.Error) {
          console.log("Debug info: " + JSON.stringify(error.debugInfo));
      }
  });
}

我想从我的 excel 电子表格中获取已使用的行数,但我无法让它工作,我无法弄清楚异步。错误是标题。

第一个问题,因为 getRowCount 是异步的,所以它 return 是一个 Promise

第二期,getRowCount 实际上return什么都没有

async function getRowCount() {
    let returnValue;
    await Excel.run(async(context) => {
        const sheet = context.workbook.worksheets.getActiveWorksheet();
        var rowCount = 0;

        for (var i = 0; i >= 0; i++) {
            var cell = sheet.getCell(i, 0);
            cell.load("address, values");
            await context.sync();
            if (cell.values[0][0] == "") {
                break;
            } else {
                rowCount++;
            }
        }
        await context.sync();
        returnValue = rowCount;
    });
    return returnValue;
}

可能有更好的方法来完成上述操作,但我不知道这个 Excel.run 等的工作原理,所以只要 Excel.run 是 returning一个 Promise - 我假设是因为你在上面使用了 await - 那么上面的应该有效

并且,您的代码中的用法为

async function getData() {
  await Excel.run(async (context) => {
    const sheet = context.workbook.worksheets.getActiveWorksheet();
    let rowCount = await getRowCount();
    var arrExport = Create2DArray(rowCount);

    for (var r = 0; r < rowCount; r++) {
    .
    .
    .

现在应该可以工作了