gpt4 book ai didi

java - 通过 Google Sheet API : Invalid requests 更改单元格的颜色

转载 作者:行者123 更新时间:2023-12-04 08:56:54 26 4
gpt4 key购买 nike

我想通过 Google Sheet API 设置一个单元格(或一组单元格)的背景颜色。
我写了这个请求,当我写 .setFields("*") 时它完美地工作,但我不能这样做,因为这会覆盖我在该单元上执行的所有先前请求。
所以我指定 .setFields("backgroundColor")根据 this document 中看到的字段名称.
但我收到一个错误:

"message" : "Invalid requests[1].repeatCell: Invalid field: background_color",
请注意,backgroundColor 已变为 background_color。
我尝试了其他字符串,如颜色、背景色……但没有一个有效。我不知道怎么办。
  Color XgoogleColor = new Color().setRed(1f).setGreen(0f).setBlue(0f); // Color.RED

return new Request()
.setRepeatCell(new RepeatCellRequest()
.setCell(new CellData()
.setUserEnteredFormat(new CellFormat()
.setBackgroundColor(XgoogleColor)
)
)
.setRange(new GridRange()
.setSheetId(sheetId)
.setStartRowIndex(startRow)
.setEndRowIndex(endRow)
.setStartColumnIndex(startColumn)
.setEndColumnIndex(endColumn)
)
.setFields("backgroundColor")
);

最佳答案

我相信你的情况和目标如下。

  • 在您的脚本中,当 .setFields("*")使用,脚本工作。
  • 您只想更新 backgroundColor .

  • 在这种情况下,请进行如下修改。
    从:
    .setFields("backgroundColor")
    到:
    .setFields("userEnteredFormat.backgroundColor")
  • 至此,backgroundColor已更新。

  • 引用:
  • RepeatCellRequest
  • 关于java - 通过 Google Sheet API : Invalid requests 更改单元格的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63771956/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com