我有一个动态电子表格,每分钟都会提取数据。我有一个应用程序脚本,可以在格式化表格中显示这些数据。我想知道是否有办法让它每分钟左右刷新一次数据?我尝试设置以下内容,并将 resetForm() 链接到触发器......但这不起作用。触发器仅在服务器上运行......而不是客户端。如果我刷新页面,新值就会出现。任何建议将不胜感激!
function resetForm(e){
var app = UiApp.getActiveApplication();
app.remove(0);
return createApp(app);
}
function doGet(e){
return createApp(UiApp.createApplication().setTitle('Enterprise Operations Requests'));
}
function createApp(e){
var app = UiApp.getActiveApplication();
//This is where I have the code for the table with dynamic data
}