
我有一个来自工具的 .tsv 文件,我必须将其导入 Google Sheet(几乎)实时报告。这是我的导入代码:
function importBigTSV(url) {return Utilities.parseCsv(UrlFetchApp.fetch(url).getContentText(),'\t');}
Run Code Online (Sandbox Code Playgroud)
直到几天前,当错误消息一直说“超出最大执行时间(第 0 行)”时,它仍然有效。
有人可以帮忙吗?非常感谢!