【发布时间】:2020-03-11 11:46:02
【问题描述】:
这是我的第一篇文章,我已经搜索了几天,找不到解决这个问题的方法。
我在表单中有一个自定义菜单,会弹出一个 .showModalDialog html。用户填写信息并单击提交。这会在后端运行一个函数,该函数创建文件夹/文件并将用户数据添加到各种工作表等。
所有这些都在工作我有一个 Ui.alert 用于检查输入的数据是否正确,并且由于某种原因该功能被触发两次,结果 UI.alert 再次弹出。我有一个故障保险来检查其中一个字段是否存在,因此它不会再次写入,但弹出窗口是一个非常糟糕的用户体验。
任何帮助将不胜感激。 创建自定义菜单的功能:
function onOpen() {
SpreadsheetApp.getUi()
.createMenu('TOA - Menu')
.addItem('Add New Account', 'addAccount')
.addItem('Update Brand', 'updateBrand')
.addItem('Go Live', 'goLive')
.addToUi();
}
弹出表单的功能:
function addAccount() {
const html = HtmlService.createHtmlOutputFromFile('newAccount')
.setTitle('Add New Account')
.setWidth(1000)
.setHeight(800);;
SpreadsheetApp.getUi()
.showModalDialog(html, 'Add New Account');
}
表格代码:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<style>
#itemDisplay {
display: none;
}
#modDisplay {
display: none;
}
#priceDisplay {
display: none;
}
#businessTypeDisplay {
display: none;
}
</style>
</head>
<body>
<h1>
Add New Account
</h1>
<form id="myForm" onsubmit="handleNewAccountFormSubmit(this);">
<div>
<label for="newBrand">Brand:</label>
<input name="newBrand" type="text" placeholder="Brand Name" required>
</div>
<div>
<p>Location</p>
<label for="country">Country:</label>
<select name="country" id="" onchange="" required>
<option value="" disabled selected>Select Country</option>
<option value="US">US</option>
</select>
<label for="state">State/Province:</label>
<input name="state" type="text" placeholder="State or province" required>
<label for="city">City:</label>
<input name="city" type="text" placeholder="City" required>
<div>
<label for="businessType">Business Type:</label>
<select name="businessType" id="businessTypeSelect" onchange="businessOtherDisplay(this.value);" required>
<option value="" disabled selected>Select Request Reason</option>
<option value="americanDiner">American Diner</option>
<option value="pizzaParlor">Pizza Parlor</option>
<option value="coffeeShop">Coffee Shop</option>
<option value="candyShop">Candy Store</option>
<option value="iceCreamParlor">Ice Cream Parlor</option>
<option value="burgerShop">Burger Shop</option>
<option value="otherNon_AmericanDiner">Other non-American Diner (Foreign servings)</option>
<option value="other">Other (not listed above)</option>
</select>
</div>
<div id="businessTypeDisplay">
<label for="businessTypeOther">Business Type Other:</label>
<input name="businessTypeOther" type="text" placeholder="Business type if not listed above">
</div>
<div>
<label for="integration">Integration:</label>
<select name="integration" required>
<option value="" disabled selected>Select Request Reason</option>
<option value="square">Square</option>
<option value="clover">Clover</option>
<option value="cloverPilot">Clover Pilot</option>
<option value="stripe">Stripe</option>
<option value="gPay">GPAY</option>
<option value="others" >Others</option>
</select>
</div>
<label for="menuSource">File Attachment/Source:</label>
<input name="menuSource" type="text" placeholder="Path to menu" required url>
<div>
<p>Do you need an item hidden/disabled?</p>
<label for="yes">Yes</label>
<input name="disableItemOption" type="radio" value="yes" onclick="showItem()">
<label for="no">No</label>
<input name="disableItemOption" type="radio" value="no" checked onclick="hideItem()">
</div>
<div id="itemDisplay">
<label for="itemDisable">Which item(s) should be disabled?</label>
<textarea id="disabledItem" name="itemDisable" cols="40" rows="5"></textarea>
</div>
<div>
<p>Do you need a modifier hidden/disabled?</p>
<label for="yes">Yes</label>
<input name="disableModOption" type="radio" value="yes" onclick="showMod()">
<label for="no">No</label>
<input name="disableModOption" type="radio" value="no" checked onclick="hideMod()">
</div>
<div id="modDisplay">
<label for="modDisable">Which modifier(s) should be disbaled?</label>
<textarea id="disabledMod" name="modDisable" cols="40" rows="5"></textarea>
</div>
<div>
<p>Do you need to update a price?</p>
<label for="yes">Yes</label>
<input name="updatePrice" type="radio" value="yes" onclick="showPrice()">
<label for="no">No</label>
<input name="updatePrice" type="radio" value="no" checked onclick="hidePrice()">
</div>
<div id="priceDisplay">
<label for="priceUpdate">Which item/modifier needs a price update?</label>
<textarea id="updatedPrice" name="priceUpdate" cols="40" rows="5" priceUpdate></textarea>
</div>
<div>
<label for="otherUpdates">Any other information needed on the menu?</label>
<input name="otherUpdates" type="text" placeholder="List other instructions here">
</div>
<div>
<label for="specialInstructions">Are there special instructions/notes for this brand?</label>
<input name="specialInstructions" type="text" placeholder="List special instructions here">
</div>
<input id="submitButton" type="submit" value="Submit">
<input type="button" value="Cancel" onclick="google.script.host.close()">
</div>
</form>
<script>
function handleNewAccountFormSubmit(formObject) {
document.getElementById('submitButton').disabled=true;
google.script.run.withSuccessHandler().processNewAccountForm(formObject);
}
function disableSubmit() {
document.getElementById('submitButton').disabled=true;
document.getElementById('submitButton').value='Sending...';
}
function showItem(){
document.getElementById('itemDisplay').style.display ='block';
document.getElementById('disabledItem').required = true;
};
function hideItem(){
document.getElementById('itemDisplay').style.display = 'none';
document.getElementById('disabledItem').required = false;
};
function showMod(){
document.getElementById('modDisplay').style.display ='block';
document.getElementById('disabledMod').required = true;
};
function hideMod(){
document.getElementById('modDisplay').style.display = 'none';
document.getElementById('disabledMod').required = false;
};
function showPrice(){
document.getElementById('priceDisplay').style.display ='block';
document.getElementById('updatedPrice').required = true;
};
function hidePrice(){
document.getElementById('priceDisplay').style.display = 'none';
document.getElementById('updatedPrice').required = false;
};
function businessOtherDisplay(value) {
if(value === "other") {
document.getElementById('businessTypeDisplay').style.display = 'block';
} else {
document.getElementById('businessTypeDisplay').style.display = 'none';
};
};
</script>
</body>
</html>
以及处理逻辑的代码
function processNewAccountForm(formObject) {
const ui = SpreadsheetApp.getUi();
const ass = SpreadsheetApp.getActiveSpreadsheet();
const ss = ass.getActiveSheet();
const timestamp = Utilities.formatDate(new Date(), "GMT+8", "MM/dd/yyyy HH:mm:ss");
const userEmail = Session.getActiveUser().getEmail();
const brandName = formObject.newBrand;
// Add alert to check data entered is correct
const response = ui.alert('Please confirm the following information is correct:',
'???????????????????? ????????????????: ' + formObject.newBrand +
'\n????????????????????????????: ' + formObject.country +
'\n????????????????????: ' + formObject.state +
'\n????????????????: ' + formObject.city +
'\n???????????????????????????????? ????????????????: ' + formObject.businessType +
'\n????????????????????????????????????????????: ' + formObject.integration +
'\n???????????????? ????????????????????????: ' + formObject.menuSource +
'\n???????? ???????????? ???????????????? ???????? ???????????????? ????????????????????????/?????????????????????????????????: ' + formObject.disableItemOption +
'\n???????????????????? ????????????????(????) ???????????????????????? ???????? ?????????????????????????????????: ' + formObject.itemDisable +
'\n???????? ???????????? ???????????????? ???? ???????????????????????????????? ????????????????????????/?????????????????????????????????: ' + formObject.disableModOption +
'\n???????????????????? ???????????????????????????????????? ???????????????????????? ???????? ?????????????????????????????????: ' + formObject.modDisable +
'\n???????? ???????????? ???????????????? ???????? ???????????????????????? ???? ?????????????????????: ' + formObject.updatePrice +
'\n???????????????????? ????????????????/???????????????????????????????? ???????????????????? ???? ???????????????????? ?????????????????????????: ' + formObject.priceUpdate +
'\n???????????? ???????????????????? ???????????????????????????????????????????? ???????????????????????? ???????? ???????????? ?????????????????: ' + formObject.otherUpdates +
'\n???????????? ???????????????????? ???????????????????????????? ????????????????????????????????????????????????/???????????????????? ???????????? ???????????????? ?????????????????????: ' + formObject.specialInstructions
, ui.ButtonSet.YES_NO);
if(response === ui.Button.YES) {
var lock = LockService.getScriptLock();
lock.waitLock(60000);
try {
const brandColumn = ss.getRange('D:D');
const brandValues = brandColumn.getValues();
let i = 1;
// Check for exisiting brand name
for(i=1; i < brandValues.length; i++) {
if(brandValues[i].toString().toLowerCase().trim() == brandName.toString().toLowerCase().trim() && ss.getRange(i+1,5).getValue() == 'New Brand'){
ui.alert("Brand name already created");
return;
}
};
// Create folder and PDF with build instructions
const parentFolder = DriveApp.getFolderById("RemovedfolderID");// how does this work with Shared drives? Create and move?
// const parentFolder = DriveApp.getFolderById("RemovedfolderID"); < ---- Team drive ID (notworking..) My folder -> RemovedfolderID
const newFolder = parentFolder.createFolder(brandName);
const docFile = newFolder.createFile(brandName+'.pdf',
'???????????????????? ????????????????: ' + formObject.newBrand +
'\n????????????????????????????: ' + formObject.country +
'\n????????????????????: ' + formObject.state +
'\n????????????????: ' + formObject.city +
'\n???????????????????????????????? ????????????????: ' + formObject.businessType +
'\n????????????????????????????????????????????: ' + formObject.integration +
'\n???????????????? ????????????????????????: ' + formObject.menuSource +
'\n???????? ???????????? ???????????????? ???????? ???????????????? ????????????????????????/?????????????????????????????????: ' + formObject.disableItemOption +
'\n???????????????????? ????????????????(????) ???????????????????????? ???????? ?????????????????????????????????: ' + formObject.itemDisable +
'\n???????? ???????????? ???????????????? ???? ???????????????????????????????? ????????????????????????/?????????????????????????????????: ' + formObject.disableModOption +
'\n???????????????????? ???????????????????????????????????? ???????????????????????? ???????? ?????????????????????????????????: ' + formObject.modDisable +
'\n???????? ???????????? ???????????????? ???????? ???????????????????????? ???? ?????????????????????: ' + formObject.updatePrice +
'\n???????????????????? ????????????????/???????????????????????????????? ???????????????????? ???? ???????????????????? ?????????????????????????: ' + formObject.priceUpdate +
'\n???????????? ???????????????????? ???????????????????????????????????????????? ???????????????????????? ???????? ???????????? ?????????????????: ' + formObject.otherUpdates +
'\n???????????? ???????????????????? ???????????????????????????? ????????????????????????????????????????????????/???????????????????? ???????????? ???????????????? ?????????????????????: ' + formObject.specialInstructions,
MimeType.PDF);
const fileURL = docFile.getUrl();
// add header row to spreadsheet
// Create Spreadsheet in Brand folder. Activity log.
const name = brandName + " Activity Log";
const id = newFolder.getId();
const resource = {
title: name,
mimeType: MimeType.GOOGLE_SHEETS,
parents: [{id: id}]
};
const fileJson = Drive.Files.insert(resource);
const fileId = fileJson.id;
const lastRow = ss.getLastRow();
const newEntry = [
lastRow,
timestamp,
timestamp,
formObject.newBrand,
'New Brand',
formObject.businessType,
formObject.integration,
'=HYPERLINK("'+formObject.menuSource+'")',
userEmail,
fileURL,
,
,
,
,
formObject.city,
formObject.state,
formObject.country,
fileId
];
const newSheet = SpreadsheetApp.openById(fileId);
const sheetRange = newSheet.getSheetByName("Sheet1").getRange(1,1,1,18);
const headers = [
['????????????????????',
'???????????????????? ???????????????????????????????? ???????????????????????? ????????????????',
'???????????????? ????????',
'???????????????????? ????????????????',
'???????????????????????????? ????????????????????????',
'???????????????????????????????? ????????????????',
'????????????????????????????????????????????',
'???????????????? ????????????????????????',
'???????????????????????????? ????????:',
'???????????????? ????????????????????????????????????????????????',
'???????????????????????????????? ?????????',
'???????????????? ????????????',
'???????????????????????????????????????? ????????????????????????',
'???????? ???????????????? ???????????????? ???????????? ????????????????',
'????????????????',
'????????????????????/????????????????????????????????',
'????????????????????????????',
'???????????????????????????????? ????????????']
];
sheetRange.setValues(headers);
// Add data to last row in main tracker
ss.appendRow(newEntry);
// Copy data to spreadsheet brand
const activitySheet = newSheet.getSheetByName("Sheet1")
activitySheet.appendRow(newEntry);
// Flush changes before releasing lock
SpreadsheetApp.flush();
} catch(e) {
ui.alert("System is Busy, Please try again in a moment.");
return
} finally {
lock.releaseLock();
return
}
} else {
// action to take if info is incorrect? or No is clicked
};
};
根据 Cooper 和其他人 here 和 here 的帖子,我知道多个触发器是一个已知问题,但我似乎无法将它们用于我的解决方案。
提前感谢您的任何想法。
【问题讨论】:
-
这不是一个已知问题。您链接的问题明确是由于 Google 表单提交,而不是由于 webapp 表单提交。可能是用户点击了两次提交按钮?
-
@TheMaster 哦,好吧。对不起,我认为它是相似的。抱歉,我对应用程序脚本和一般编程很陌生。也许我可以添加一个禁用按钮的功能?想法?
-
我试过 onsubmit="handleNewAccountFormSubmit(this); disableSubmit()" 调用函数: function disableSubmit() { document.getElementById('submitButton').disabled=true; document.getElementById('submitButton').value='正在发送...';这对我不起作用。仍然弹出。有没有更好的方法来禁用按钮?
-
在调用 gsrun 之前在
handleNewAccFS()函数中执行此操作 -
@TheMaster 我试过了,但没有任何乐趣。使用该代码一切都运行良好......只有两次。并非每次都在 50% 左右。
标签: javascript html google-apps-script google-sheets