- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
[根据 T.J. Crowder 的建议进行了编辑以包含一个最小的可重现示例.]
我正在使用 Google Apps 脚本开发一个简单的函数,该函数应该将日期 或错误字符串 发布到电子表格的列中。该列已有数据验证规则,拒绝任何不是有效日期的值。这一切都很好。
我的问题是:
我尝试使用 try...catch block 来优雅地处理错误,并在值未通过数据验证时仅记录错误消息。 try...catch 似乎根本不起作用。相反,脚本会抛出错误并中断,并且日志为空。
这是使用新代码更新后的屏幕截图(抱歉,Sourabh Choraria,用于覆盖您的更新)。令人惊讶的是,GAS 会在应该发生错误的位置上方突出显示一行。
作为背景知识,此脚本获取列中存储的各种其他电子表格的 ID,获取每个电子表格的最后更新时间戳,并将结果发布到结果列中。
这是我使用的代码。
function trackDocUpdates() {
//Set the global variables
var ss = SpreadsheetApp.getActive();
var residentSheet = ss.getSheetByName("Resident Documents");
var activeRange = residentSheet.getDataRange();
var numRows = activeRange.getNumRows();
var lastRevision = "No value yet.";
//Loop through the rows of data to get the last updated timestamp of each document
//The first data row is the 5th row of the sheet currently, hence the for loop starts at 5
for (i = 5; i <= numRows; i++) {
//Get the document URL from the current row. Currently the second column has the document URLs
var docURL = residentSheet.getRange(i, 2).getValue();
//Extract the document's ID from the URL
var docId = docURL.split("/")[5];
//As long as there's a valid-looking document ID, get the last updated timestamp for the current document in the loop
if (docId != undefined) {
lastRevision = getLastRevision(docId);
Logger.log(lastRevision);
}
else {
lastRevision = "No document URL found";
Logger.log(lastRevision);
}
//Post the last updated timestamp in the appropriate result cell
postLastUpdatedTime(lastRevision, i, 9);
}
//Function to get the last updated timestamp for a given document
function getLastRevision(docId) {
//Try to get the last updated timestamp for the given document ID
try {
var revisions = Drive.Revisions.list(docId);
if (revisions.items && revisions.items.length > 0) {
var revision = revisions.items[revisions.items.length-1];
var lastModified = new Date(revision.modifiedDate);
//var modifiedDateString = Utilities.formatDate(lastModified, ss.getSpreadsheetTimeZone(), "MMM dd, yyyy hh:mm:ss a");
return lastModified;
}
else {
return 'No revisions found.';
}
}
//If the file cannot be accessed for some reason (wrong docId, lack of permissions, etc.), return an appropriate message for posting in the result cell
catch(err) {
return "File cannot be accessed.";
}
}
//Function to post the last updated timestamp for a given document in the given result cell
function postLastUpdatedTime(message, rowIndex, colIndex) {
//If there's no argument is passed to colIndex, set its value to be 11
colIndex = colIndex || 11;
var cellToPost = residentSheet.getRange(rowIndex, colIndex);
try {
cellToPost.setValue(message);
cellToPost.setNumberFormat('MMM dd, yyyy hh:mm:ss AM/PM');
}
catch(err) {
Logger.log(err);
residentSheet.getRange(rowIndex, 12).setValue(err);
}
}
//Update the last refreshed time of the script in the first row of the result column
var scriptUpdatedTime = new Date();
postLastUpdatedTime(scriptUpdatedTime, 1);
}
谁能帮我弄清楚哪里出错了?
PS:我无权删除一开始出现此问题的数据验证,因为我只是向客户的现有电子表格添加功能。
最佳答案
我能够重现您的问题。
这个确切的问题已经报告给谷歌 (issuetracker.google.com),他们提交了一个内部案例 [1] 关于 Apps 脚本中的 try/catch 语句不处理数据验证错误。
[1] https://issuetracker.google.com/issues/36763134#comment7
关于javascript - Try...catch 在 Google Apps 脚本中无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58604400/
我想知道是否可以安全地编写 catch() 来捕获所有 System.Exception 类型。或者我是否必须坚持使用 catch(Exception) 来完成此任务。我知道对于其他异常类型(例如 I
在 C# 中,'Catch'、'Catch (Exception)' 和 'Catch(Exception e)' 之间有什么区别? MSDN article on try-catch在其示例中使用了
然后一个 Promise 调用另一个 Promise,并且内部 Promise 从 catch .then block 中的外部 Promise 返回 我一般都在这里和谷歌上搜索过。尝试使用简单的 t
我们可以在 Try-Catch 中使用多个 catch 块。 但我的问题是:为什么可以使用单个 catch 块完成时使用多个 catch 块? 假设我想要我的问题的确切原因,我可以通过 Ex.mess
所以我在 service.ts 中有这个用户服务功能其中包括数据库的东西。 export const service = { async getAll(): Promise { try {
我不确定这里发生了什么。很明显为什么内扣会捕获throw 2 ,但为什么外面catch(int x)捕获 throw ?我以为catch(int x)应该只捕获整数值。第二个throw有可能吗?抛出什
我目前正在以不同的方式加载图像,如下所示: try { // way 1 } catch { // way 1 didn't work try { // way 2 }
这两者有什么区别?一个比另一个快吗?两者似乎都有效。有人请解释 没有 promise 的人: client.query(query1) .then(data => { callback(null
它几乎可以在所有语言中找到,而且我大部分时间都在使用它。 我不知道它是内部的,不知道它是如何真正起作用的。 它如何在任何语言的运行时在 native 级别工作? 例如:如果在 try 内部发生 sta
Closed. This question is opinion-based。它当前不接受答案。 想改善这个问题吗?更新问题,以便editing this post用事实和引用来回答。 1年前关闭。
我正在编写一个用于学习目的的短代码,要求用户输入密码才能登录 Facebook。我正在测试异常处理,由于某种原因,当密码错误时,Catch 部分没有执行。代码是: import java.util.S
如果try-catch的catch block 中抛出异常,那么finally block 会被调用吗? try { //some thing which throws error } cat
try { while ((inputLine = bufferedReader.readLine()) != null) { String[] words = inputLine.s
在 C# 上下文中,可以使用如下代码: try { ... } catch { ... } 在其他情况下,代码可以是: try { ... } catch (Exc
有时我在探索 ServiceStack 的代码库时遇到以下构造: try { ... } catch (Exception) { throw; } 在我看来,这种结构没有任何作用。这样做的
我最近遇到了一个 Javascript 问题,捕获错误,因此在抛出异常时崩溃。 funcReturnPromise().then().catch() 我必须将其更改为: try { funcRet
我在编写一些测试的 C++ 文件中遇到此错误: error: no member named 'Session' in namespace 'Catch' testResult = C
CException 是VC++抛出的所有异常的基类型,所以它应该捕获所有的异常吧? 最佳答案 CException 不是所有扩展的基类型(它可能是 MFC 代码使用的所有异常的基类型,但仅此而已)。
每次我看到 catch all 语句时: try { // some code } catch (...) { } 它一直是一种滥用。 反对使用 cache all 子句的论点是显而易见的。它会捕
代码相当简单——问题是 groupPath 字符串中有一个无效字符(准确地说是“/”)。 我正在尝试做的(至少作为权宜之计)是跳过我无法获得 cn 的 DirectoryEntries --- 不管为
我是一名优秀的程序员,十分优秀!