我的代码正在工作,正在读取和编辑Google Spreadsheet。突然,当我运行该应用程序时,它卡在了我的工作表的getInfo()函数中。
尝试删除等待,但返回值不确定。
'use strict';
const GoogleSpreadSheet = require('google-spreadsheet');
const credentials = require('./client_secret.json');
const doc = new GoogleSpreadSheet('');
const { promisify } = require('util');
module.exports.function = async () =>
{
console.log(1);
await promisify(doc.useServiceAccountAuth)(credentials);
console.log(2);
const info = await promisify(doc.getInfo)();
console.log(3);
//...
}
控制台仅打印1和2。