大家好,感谢您的帮助。 这是我的问题:
我正在通过HTML模板从库中开发电子表格工具,但服务器功能不起作用。
简化代码(函数更长):
function Cancel_Version(){
return Action_Box("¡HEY!","You're to cancel active edition.\n\n 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 code:
<!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>
为什么代码操作不起作用?即使我已将<?!= action; ?>
替换为Cancel_Version2()
,但仍无效。另一方面,如果我从onOpen菜单直接调用该函数,它就可以工作。
我缺少什么?因为我追了这么多天,请建议!!
答案 0 :(得分:0)
你的剧本在哪里?您需要在HTML中的脚本中包含google.script.run
。
尝试这样的事情:
function doGet() {
return HtmlService.createHtmlOutputFromFile('index');
}
function Cancel_Version2(){
var ui = SpreadsheetApp.getUi();
var ss = SpreadsheetApp.getActiveSpreadsheet();
ss.deleteActiveSheet();
}
<?!= 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>