1

我正在尝试将电子表格上 Google App Script 表单中的一些用户输入保存到私人缓存中。

这是一个测试脚本:

var cache = CacheService.getPrivateCache();

function onLoad() {
  var sheet = SpreadsheetApp.getActiveSpreadsheet(),
      entries = [{
        name : "Show form",
        functionName : "showForm"
      }];
  sheet.addMenu("Test Menu", entries);
}

function showForm() {
  var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(),
      app = UiApp.createApplication(),
      setButton = app.createButton("Set"),
      setHandler = app.createServerClickHandler('setTest');

  setButton.addClickHandler(setHandler);
  app.add(setButton);
  spreadsheet.show(app);
}

function setTest(event) {
  cache.put("test", "test", 7200);

  Browser.msgBox("Test was set: " + cache.get("test") + ". Use the getTest cell formula to test the cache.");
}

function getTest() {
  var result = cache.get("test");

  return result;
}

单击菜单按钮后,将出现一个表单并在服务器处理程序中设置缓存值。然后我尝试在单元格中使用 =getTest() 从缓存中获取值。我希望缓存返回值“test”,但它似乎返回 null。

我在这里开始这个问题: http ://code.google.com/p/google-apps-script-issues/issues/detail?id=2039

我还发现了另一个类似的: http ://code.google.com/p/google-apps-script-issues/issues/detail?id=1804

尝试将表单上的一些用户输入保存到缓存中,以便以后能够从另一个函数访问它。

有什么建议么?

4

1 回答 1

0

自定义功能的范围有限,因此只能访问少数选择的服务。你在这里阅读更多关于它们的限制。

使用 Cache 它有点棘手 - 缓存是每个“脚本范围”。因此,当首先从服务器处理程序脚本范围访问缓存时,它作为具有更多权限的 UiApp 运行,这与自定义函数运行的脚本范围不同。因此,缓存不在这两个范围之间共享。

您可以从其他自定义函数访问您在自定义函数中设置的缓存项,但此缓存不能跨越这些边界。

理论上,您可以将其存储在 ScripProperties 中,但这可能非常笨拙,并且会滥用这些功能,并且在所有用户之间共享。

ScriptProperties.setProperty("test", "test")

var result = ScriptProperties.getProperty("test");

如果您可以更深入地解释您的用例,也许我们可以提供一些替代解决方案。

于 2012-11-02T18:39:33.440 回答