I know how to write a simple app script that (once published) provide a simple form (name and message) that push values in a Google Spreadsheet.
My question is: how can I run the script from my site? Can I build an html form and when I submit the form writes in a spreadsheet?
Is there a way to "create" a link with values that must be pushed in the spreadsheet?
Where can I find examples?
Thanks
EDIT
GS CODE
var logSheetId = "[SHEETID]"; // Drive ID of log spreadsheet
function doGet(e){
var nome;
var messaggio;
nome = e.parameter.stringaNome;
messaggio=e.parameter.stringaMessaggio;
scriviSpreadsheet(nome,messaggio);
}
function scriviSpreadsheet(nome, messaggio) {
try {
// Open the log and record the new file name, URL and name from form
var ss = SpreadsheetApp.openById(logSheetId);
var sheet = ss.getSheets()[0];
sheet.appendRow([nome, messaggio]);
// Return the new file Drive URL so it can be put in the web app output
//return file.getUrl();
} catch (error) {
return error.toString();
}
}
HTML (external site)
<form id="myForm">
<input type="text" id="nome" name="nome" placeholder="Il tuo nome"/>
<input type="text" id="messaggio" name="messaggio"/>
<input type="button" value="Submit"
onclick="scrivi()" />
</form>
<script>
function scrivi(){
var nome= document.getElementById("nome").value;
var messaggio = document.getElementById("messaggio").value;
var location = "/[MYSCRIPTID]/exec?stringaNome=" + nome + "&stringaMessaggio=" + messaggio;
window.location = location;
}
function onFailure(error) {
alert(error.message);
}
</script>
I know it's not the best code ever but it works.
How can I avoid that any page open when I click the button?
I know how to write a simple app script that (once published) provide a simple form (name and message) that push values in a Google Spreadsheet.
My question is: how can I run the script from my site? Can I build an html form and when I submit the form writes in a spreadsheet?
Is there a way to "create" a link with values that must be pushed in the spreadsheet?
Where can I find examples?
Thanks
EDIT
GS CODE
var logSheetId = "[SHEETID]"; // Drive ID of log spreadsheet
function doGet(e){
var nome;
var messaggio;
nome = e.parameter.stringaNome;
messaggio=e.parameter.stringaMessaggio;
scriviSpreadsheet(nome,messaggio);
}
function scriviSpreadsheet(nome, messaggio) {
try {
// Open the log and record the new file name, URL and name from form
var ss = SpreadsheetApp.openById(logSheetId);
var sheet = ss.getSheets()[0];
sheet.appendRow([nome, messaggio]);
// Return the new file Drive URL so it can be put in the web app output
//return file.getUrl();
} catch (error) {
return error.toString();
}
}
HTML (external site)
<form id="myForm">
<input type="text" id="nome" name="nome" placeholder="Il tuo nome"/>
<input type="text" id="messaggio" name="messaggio"/>
<input type="button" value="Submit"
onclick="scrivi()" />
</form>
<script>
function scrivi(){
var nome= document.getElementById("nome").value;
var messaggio = document.getElementById("messaggio").value;
var location = "https://script.google./macros/s/[MYSCRIPTID]/exec?stringaNome=" + nome + "&stringaMessaggio=" + messaggio;
window.location = location;
}
function onFailure(error) {
alert(error.message);
}
</script>
I know it's not the best code ever but it works.
How can I avoid that any page open when I click the button?
Share Improve this question edited Feb 13, 2021 at 3:03 Wicket 38.7k9 gold badges79 silver badges194 bronze badges asked Nov 8, 2016 at 16:13 Andrea VolontèAndrea Volontè 851 gold badge3 silver badges11 bronze badges 12- You could write an HTML form and embed it into the site, you could use a google form and embed it via iframe or you can make a google site and embed GAS directly – Robin Gertenbach Commented Nov 8, 2016 at 16:15
-
2
If your web page can make an HTTPS Request, then you can trigger an Apps Script function to run with a GET or POST request to the published URL of the Apps Script project. For example, If your web page can use JavaScript, then you can make an AJAX request. If your web page can run server side code, then your web site server side code can make a GET or POST request to the Apps Script URL. To handle a GET or POST request, Apps Script has two reserved function names:
doGet()
anddoPost()
They both monitor for the event of a request made to the published URL. – Alan Wells Commented Nov 8, 2016 at 16:26 -
Publish the script as a web app. Then you get a link you can use on its own, in an iframe, or direcetly into a Google Site page. For a non-Google Site, in your doGet(e) function you would call
HtmlService.createTemplateFromFile('Index').setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
orHtmlService.createHtmlOutput('Index').setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
or one of the other calls. See developers.google./apps-script/reference/html/html-service and developers.google./apps-script/reference/html/… – Karl_S Commented Nov 8, 2016 at 16:29 - @SandyGood I'm looking doGet and doPost documentation but it looks hard to me... can you provide a simple example? (not necessarly exactly the same function I need) Have I to format the url? – Andrea Volontè Commented Nov 8, 2016 at 17:21
-
2
If you have ever created a Web App with Apps Script, then you have used the
doGet()
function, and published it. In the "Publish" menu, click "Deploy as web app", and a dialog box will appear. At the top, there is a field with the published URL. That is the URL that you use. See the following for more info: Link to Stack Overflow answer – Alan Wells Commented Nov 8, 2016 at 17:47
1 Answer
Reset to default 8EDIT: Tested and works. Don't forget to deploy as web app, give the form access to post to the script, and ensure the script has access to the target sheet by running the script manually once.
form.html:
<form action="https://script.google./macros/s/[SCRIPT ID]/exec" method="post">
Input One:<br>
<input type="text" name="inputOne"><br>
Input Two:<br>
<input type="text" name="inputTwo"><br>
Input Three:<br>
<input type="text" name="inputThree"><br>
Input Four:<br>
<input type="text" name="inputFour"><br>
Input Five:<br>
<input type="text" name="inputFive"><br>
<input type="submit" value="Submit">
</form>
Code.gs:
function doPost(e) {
var ss = SpreadsheetApp.openById("SHEET ID");
var sheet = ss.getSheetByName("Sheet1");
var sheet_counters = ss.getSheetByName("Counters");
var id = sheet_counters.getRange("A2").getValue()+1;
var timeZone = ss.getSpreadsheetTimeZone();
var timestamp = Utilities.formatDate(new Date(), timeZone, "dd/MM/yyyy HH:mm:ss");
sheet.appendRow([
id,
timestamp,
e.parameter.inputOne,
e.parameter.inputTwo,
e.parameter.inputThree,
e.parameter.inputFour,
e.parameter.inputFive]);
sheet_counters.getRange("A2").setValue(id);
}