Mypage.html
<div class="seven"><button onClick="Submit()">submit</button> </div>
<script type="text/javascript">
function submit() {
google.script.run.scores(document.forms[0]);
}
</script>
....上點擊刷新HTML網頁服務
Javascript.gs
function scores(form){
Logger.log("I am called")
}
上面的代碼完美地工作,但每次我點擊按鈕,我想要的HTML模板化/部署的網頁加載/重載/刷新還有...
我嘗試添加
google.script.run.scores(document.forms[0]); (continued from above code, hence line repeated))
google.script.host.refresh (basically got the idea from host.close)
google.script.host.reload
google.script.host.load
請有人可以幫助我得到正確的代碼,通過該的onClick分數函數被調用的按鈕(目前正在工作)以及正在刷新的頁面。
注:我想它刷新,原因是 - 上提交,數據被推向GSheet它再次呼籲在刷新下拉....提前
感謝....