やりたいこと
以下に示すコードでgas上の関数read_dateの戻り値dateを使用して
再度gas内の関数write_sheetを実行したいのですが、うまく実行できません。
gasからhtmlへのデータ渡し方法をご存知でしたらご教示いただけますと幸いです。
よろしくお願いいたします。
html
1<!DOCTYPE html> 2<html> 3 <head> 4 <base target="_top"> 5 <script> 6 7 window.addEventListener('load', preventFormSubmit); 8 function readFile(formObject) 9 { 10 google.script.run.withSuccessHandler(function).read_date(formObject); 11 function(date) 12 { 13 google.script.run.write_sheet(date,formObject); 14 } 15 } 16 17 18 </script> 19 </head> 20 <body> 21 <form id="openForm" onsubmit="readFile(this)" enctype="multipart/form-data"> 22 <input name="openFile" type="file" /><br> 23 <button type = "submit"> 読込 </button> 24 </form> 25 </body> 26</html>
gs
1/*ファイル情報から日付情報の読み込み*/ 2function read_date(formObject) 3{ 4 var date = "monday" 5 return date; 6} 7 8function writeSheet(date, formObject) 9{ 10 hogehoge 11}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/05 01:36