我正在通过HTML模板从库开发电子表格工具,但是服务器功能不起作用。
gs简化的代码(功能更长):
function Cancel_Version(){
return Action_Box("¡HEY!","You're to cancel active edition.nn Sure?","Cancel_Version2()");
}
function Action_Box(TITLE,MESSAGE,FUNCTION){
var html = HtmlService.createTemplateFromFile('ACTION_BOX');
html.data = MESSAGE;
html.action = FUNCTION;
SpreadsheetApp.getUi().showModalDialog(html.evaluate().setHeight(200),TITLE);
}
function Cancel_Version2(){
var ss = SpreadsheetApp.getActiveSpreadsheet();
ss.deleteActiveSheet();
}
html代码:
<!DOCTYPE html>
<?!= include('CSS'); ?>
<form style="font-size: 22px; font-family: 'calibri'; ">
<?!= data; ?>
<br>
<br>
<input type="button" value="ACCEPT" onclick="<?!= action; ?>; google.script.host.close();"/>
<input type="button" value="CANCEL" onclick="google.script.host.close();"/>
</form>
为什么代码操作不起作用?即使我已经用Cancel_Version2()
替换<?!= action; ?>
,但仍然不起作用。另一方面,如果我直接从Onopen菜单中调用函数,则可以工作。
我缺少什么?
您的脚本在哪里?您需要在HTML中的脚本中包含google.script.run
。
信息在这里
在这里
尝试这样的事情:
code.gs
function doGet() {
return HtmlService.createHtmlOutputFromFile('index');
}
function Cancel_Version2(){
var ui = SpreadsheetApp.getUi();
var ss = SpreadsheetApp.getActiveSpreadsheet();
ss.deleteActiveSheet();
}
index.html
<?!= include('CSS'); ?>
<form style="font-size: 22px; font-family: 'calibri'; ">
<?!= data; ?>
<br>
<br>
<input type="button" value="ACCEPT" onclick="deleteSheet()"/>
<input type="button" value="CANCEL" onclick="google.script.host.close();"/>
</form>
<script>
function deleteSheet() {
google.script.run.Cancel_Version2()
}
</script>
您还可以通过成功或失败处理程序运行它以获取回电功能。其中onsuccess()&amp;onFailure()将是您正在调用的第一个功能的响应函数。
<script>
function onSuccess() {
//create onSuccess response function
}
function onFailure() {
//create onFailure response function
}
function deleteSheet() {
google.script.run.withSuccessHandler(onSuccess).withFailureHandler(onFailure).Cancel_Version2()
}
</script>
在.gs文件的action_box函数上,替换
html.action = FUNCTION;
html.action = 'google.script.run.';
html.action += 'withSuccessHandler(google.script.host.close).';
html.action += FUNCTION;
在action_box.html文件上而不是
上<input type="button" value="ACCEPT" onclick="<?!= action; ?>; google.script.host.close();"/>
使用
<input type="button" value="ACCEPT" onclick="<?!= action; ?>;"/>
相关
- 打开对话框并关闭Google Apps脚本中的侧边栏