在添加新格式之前无法删除条件格式
Unable to delete conditional formatting prior to adding new formatting
为了确保我不会一遍又一遍地添加相同的规则,我尝试首先清除我正在使用的列(即索引 6)上的所有条件格式。但是当我这样做时,我不断收到错误消息:
Invalid requests[0].deleteConditionalFormatRule: No conditional format on sheet: [THE_SHEET_ID] at index: 6
说 sheet 没有条件格式(这是不正确的)。
我的 Apps 脚本代码的相关片段:
...
var redWarning = Sheets.newRequest();
var redWarningRequest = Sheets.newAddConditionalFormatRuleRequest();
redWarningRequest.rule = redWarningRule;
redWarningRequest.index = 6;
redWarning.addConditionalFormatRule = redWarningRequest;
var clearRedWarning = Sheets.newRequest();
var clearRedWarningRequest = Sheets.newDeleteConditionalFormatRuleRequest();
clearRedWarningRequest.sheetId = sheetID;
clearRedWarningRequest.index = 6;
clearRedWarning.deleteConditionalFormatRule = clearRedWarningRequest;
// Batch send requests
var requests = [clearRedWarning, redWarning];
var batchUpdate = Sheets.newBatchUpdateSpreadsheetRequest();
batchUpdate.requests = requests;
return Sheets.Spreadsheets.batchUpdate( batchUpdate, spreadsheetId );
如果我不包含 clearRedWarning
请求,一切正常,但这显然不会清除现有的条件格式。
我在这里错过了什么?另外,是否有一些方法可以仅有条件地添加格式,即仅在格式不存在时才添加?
*编辑
根据 tehhowch 的要求,这是 API 资源管理器中的 JSON 响应(对某些值进行了编辑):
{
"sheets": [
{
"properties": {
"sheetId": [REDACTED],
"title": "[REDACTED]"
},
"conditionalFormats": [
{
"ranges": [
{
"sheetId": [REDACTED],
"startRowIndex": 1,
"endRowIndex": 1000,
"startColumnIndex": 6,
"endColumnIndex": 7
}
],
"booleanRule": {
"condition": {
"type": "TEXT_CONTAINS",
"values": [
{
"userEnteredValue": "yes"
}
]
},
"format": {
"backgroundColor": {
"red": 1,
"green": 0.8,
"blue": 0.8
},
"textFormat": {
"foregroundColor": {
"red": 1,
"green": 0.2,
"blue": 0.2
},
"bold": true
}
}
}
}
]
}
]
}
关于正在发送的 JSON...这是在 Google Apps 脚本中,因此此处不存在控制台日志。有一个 "Logger",但不确定您还需要从请求中得到什么(它在上面 "clearRedWarning" var 中的明文中(即请求的制定方式)。
index
The zero-based index of the rule to be deleted.
它不是列索引。这是规则的索引。 0
将是最高优先级规则。 1
将是下一个最高的,依此类推。您对索引 6
的请求有效,前提是存在 7 个条件格式规则。
您也可以尝试分别发出这两个请求。不管第一个请求是否出错(如果0
没有规则),你可以使用finally
.
发出第二个请求
参考文献:
为了确保我不会一遍又一遍地添加相同的规则,我尝试首先清除我正在使用的列(即索引 6)上的所有条件格式。但是当我这样做时,我不断收到错误消息:
Invalid requests[0].deleteConditionalFormatRule: No conditional format on sheet: [THE_SHEET_ID] at index: 6
说 sheet 没有条件格式(这是不正确的)。
我的 Apps 脚本代码的相关片段:
...
var redWarning = Sheets.newRequest();
var redWarningRequest = Sheets.newAddConditionalFormatRuleRequest();
redWarningRequest.rule = redWarningRule;
redWarningRequest.index = 6;
redWarning.addConditionalFormatRule = redWarningRequest;
var clearRedWarning = Sheets.newRequest();
var clearRedWarningRequest = Sheets.newDeleteConditionalFormatRuleRequest();
clearRedWarningRequest.sheetId = sheetID;
clearRedWarningRequest.index = 6;
clearRedWarning.deleteConditionalFormatRule = clearRedWarningRequest;
// Batch send requests
var requests = [clearRedWarning, redWarning];
var batchUpdate = Sheets.newBatchUpdateSpreadsheetRequest();
batchUpdate.requests = requests;
return Sheets.Spreadsheets.batchUpdate( batchUpdate, spreadsheetId );
如果我不包含 clearRedWarning
请求,一切正常,但这显然不会清除现有的条件格式。
我在这里错过了什么?另外,是否有一些方法可以仅有条件地添加格式,即仅在格式不存在时才添加?
*编辑 根据 tehhowch 的要求,这是 API 资源管理器中的 JSON 响应(对某些值进行了编辑):
{
"sheets": [
{
"properties": {
"sheetId": [REDACTED],
"title": "[REDACTED]"
},
"conditionalFormats": [
{
"ranges": [
{
"sheetId": [REDACTED],
"startRowIndex": 1,
"endRowIndex": 1000,
"startColumnIndex": 6,
"endColumnIndex": 7
}
],
"booleanRule": {
"condition": {
"type": "TEXT_CONTAINS",
"values": [
{
"userEnteredValue": "yes"
}
]
},
"format": {
"backgroundColor": {
"red": 1,
"green": 0.8,
"blue": 0.8
},
"textFormat": {
"foregroundColor": {
"red": 1,
"green": 0.2,
"blue": 0.2
},
"bold": true
}
}
}
}
]
}
]
}
关于正在发送的 JSON...这是在 Google Apps 脚本中,因此此处不存在控制台日志。有一个 "Logger",但不确定您还需要从请求中得到什么(它在上面 "clearRedWarning" var 中的明文中(即请求的制定方式)。
index
The zero-based index of the rule to be deleted.
它不是列索引。这是规则的索引。 0
将是最高优先级规则。 1
将是下一个最高的,依此类推。您对索引 6
的请求有效,前提是存在 7 个条件格式规则。
您也可以尝试分别发出这两个请求。不管第一个请求是否出错(如果0
没有规则),你可以使用finally
.