我有一张Google Sheet,它运行一些Apps Script服务器代码以连接到SQL服务器。我想在刷新数据时在模式对话框中显示消息“loading ...”。我可以弹出模态,但是我想在代码完成后立即自动关闭对话框。
我设置的一个例子是:
function testpop () {
var htmlOutput = HtmlService
.createHtmlOutput('<p> This box will close when the data has finished loading.</p>')
.setSandboxMode(HtmlService.SandboxMode.IFRAME)
.setWidth(250)
.setHeight(200);
SpreadsheetApp.getUi().showModalDialog(htmlOutput, 'Loading...');
sleep(1000);
//close the dialog
}
我知道这可以在客户端调用,但是需要在GS中处理它,以便在代码完成时触发它。
答案 0 :(得分:8)
事件的流程可能是:
onLoad
模态对话框事件触发客户端代码google.script.run
触发服务器端.gs
函数运行.gs
脚本文件中的服务器功能运行。google.script.host.close();
您的模态对话框中需要<script>
标记。
<script>
window.onload = function() {
//console.log('window.onload ran!');
google.script.run
.withSuccessHandler(closeDialog)
.theFunctionNameToUpdateDatabase()
};
window.closeDialog = function() {
google.script.host.close();
};
</script>
现在你正在使用:
HtmlService.createHtmlOutput(the HTML here)
您可以改为从文件创建HTML:
HtmlService.createHtmlOutputFromFile(filename)
答案 1 :(得分:2)
//显示对话框
var output = HtmlService.createHtmlOutput('<b>Please wait...</b>');
SpreadsheetApp.getUi().showModalDialog(output, 'Saving...');
一些代码
//关闭对话框
var output = HtmlService.createHtmlOutput('<script>google.script.host.close();</script>');
SpreadsheetApp.getUi().showModalDialog(output, 'Loading...');
*可选
ui.alert("Saved Successfully!")
答案 2 :(得分:1)
我也同意@pcw11211 给出的答案。我通过将 htmlmodalDialog 调用封装在一个可以打开或关闭对话框的函数中来稍微修饰一下。我也在那里添加了一些 html 样式。还要注意 htmlmodalDialog 周围的 try/catch,这样当您从脚本编辑器进行测试时,脚本仍然可以运行,否则主脚本有时会(?)因上下文错误而停止。
/**
* HELPER FUNCTION : TO OPEN & CLOSE MODAL DIALOGUE
*/
function htmlmodalDialog(title, text, close){
var htmlText = '<div>' + text + '</div>';
htmlText += '<style type="text/css">';
htmlText += 'body{text-align: center; font-family: Roboto, Arial, sans-serif; font-size: 14px;}';
htmlText += 'div{margin: auto;}';
htmlText += '</style>';
if(close){htmlText += '<script>google.script.host.close();</script>';}
var htmlOutput = HtmlService
.createHtmlOutput(htmlText)
.setHeight(60)
.setWidth(200);
try {
SpreadsheetApp.getUi().showModalDialog(htmlOutput, title);
}catch(e){
Logger.log('function htmlmodalDialog(title, text, close)');
Logger.log(e);
}
}
该函数从主代码调用如下,最后一个参数是一个打开/关闭布尔值。
htmlmodalDialog('Starting', 'Working ...', false);
//do something here
htmlmodalDialog('Finished', 'Operation completed.', true);
希望这对某人有所帮助。
答案 3 :(得分:0)
这个解决方案提供了一个立即关闭对话框的按钮,并会在 5000 毫秒(5 秒)后通过在 body 标签中使用“onload="setTimeout(closer, 5000)”自动关闭。它将传递一个谷歌脚本变量到 HTML 以自定义对话框。
这是我想出的...
我的 GS 文件:
function myGSFunction(inputVariable){
const ui = SpreadsheetApp.getUi();
let gsVariable = inputVariable.toUpperCase().trim() || null;
let htmlOutput;
.
.
.
htmlOutput = HtmlService.createTemplateFromFile('errorModelessDialog');
htmlOutput.htmlVariable = gsVariable; //define variable accessible in html
ui.showModelessDialog(htmlOutput.evaluate().setWidth(400).setHeight(150), 'ERROR');
.
.
.
};
我的 errorModelessDialog.html 文件:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body onload="setTimeout(closer, 5000)">
<p align="center"><?!=htmlVariable?> is not valid.</p>
<p align="center"><button onclick="google.script.host.close()">Close</button></p>
<script>
function closer(){
google.script.host.close();
}
</script>
</body>
</html>