前提・実現したいこと
GAS, Javascript, HTML初心者です.
GAS,HTMLservice, Google sheetsを用いて店舗間の在庫共有システムを作っています.
htmlヘッダー部にurlパラメータを表示させる方法を試みています.
予めurlに?param=testとしてパラメータを付与してあります.
発生している問題・エラーメッセージ
ページ上に反映されません.
該当のソースコード
Code.gs
var ss_id = 'スプレッドシートのID'; function doGet(e) { return HtmlService.createTemplateFromFile("customer").evaluate(); } function customer_input(lastname, firstname, sex, tel, bday, email, adress) { var sh_name = '顧客情報'; var sh = SpreadsheetApp.openById(ss_id).getSheetByName(sh_name); var lastrow = sh.getLastRow(); sh.appendRow([lastrow, lastname, firstname, sex, tel, bday, email, adress, new Date()]); return "顧客情報を入力しました"; } function open_purchase(){ return HtmlService.createTemplateFromFile("purchase").evaluate(); }
customer.html
<!DOCTYPE html> <html> <head> Customer data<br> <!--ここにURLパラメータを表示させたい--> </head> <body> <label>last name</label><input type="text" id="lastname"><br> <label>first name</label><input type="text" id="firstname"><br> <select id="sex"> <option value="MALE">男性</option> <option value="FEMALE">女性</option> </select><br> <label>TEL</label><input type="text" id="tel"><br> <label>Birthday</label><input type="date" id="bday"><br> <label>E-mail</label><input type="text" id="email"><br> <label>Adress</label><input type="text" id="adress"><br> <button id="submit">submit</button> <button id="norder">new order</button> <script> document.getElementById("submit").onclick = input_to_sheet; document.getElementById("norder").onclick = open_page; function input_to_sheet() { var lastname = document.getElementById("lastname").value; var firstname = document.getElementById("firstname").value; var sex = document.getElementById("sex").value; var tel = document.getElementById("tel").value; var bday = document.getElementById("bday").value; var email = document.getElementById("email").value; var adress = document.getElementById("adress").value; google.script.url.getLocation(location => { google.script.run .withFailureHandler(onFailure) .withSuccessHandler(onSuccess) .customer_input(lastname, firstname, sex, tel, bday, email, adress, location.parameter["store"]); }); } function onSuccess(result) { alert(result); } function onFailure(e) { alert([e.message, e.stack]); } function open_page() { google.script.url.getLocation(location => { google.script.run .withFailureHandler(onFailure) .withSuccessHandler(onSuccess) .open_purchase(); }); } function onSuccess(result) { alert(result); } function onFailure(e) { alert([e.message, e.stack]); } </script> </body> </html>
試したこと
location.searchとgoogle.script.url.getlocation等を試しましたが,いずれも反映されません.
おそらく書き方が悪いだけなのですが...
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/05 02:57