我正在尝试将电子表格上 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
尝试将表单上的一些用户输入保存到缓存中,以便以后能够从另一个函数访问它。
有什么建议么?