0
我需要一點幫助。我不是程序員。在Google Script中多次上傳
我正在尋找一個谷歌腳本進行多次上傳。我發現這個免費的網絡共享腳本:https://script.google.com/d/1x3p9ZAv-SafEK06r_Vr7fVuUNtEfBg1SGhmSYWjQ0kuPTk-y55a7Nink/edit?usp=sharing
我不知道如何編輯它。我真的不是程序員。 我想在2次上傳中選擇'選擇文件'。
這種原始形態
<form id="myForm" align="center">
<input type="text" name="myName" placeholder="Your name..">
<input type="file" name="myFile">
<input type="submit" value="Upload File"
onclick="this.value='Uploading..';
google.script.run.withSuccessHandler(fileUploaded)
.uploadFiles(this.parentNode);
return false;">
</form>
我想要這樣的事情,
<form id="myForm" align="center">
<input type="text" name="myName" placeholder="Your name..">
<input type="file" name="myFile">
<input type="file" name="myFile"> <--THIS IS MY NEED, Pls don't laugh
<input type="submit" value="Upload File"
onclick="this.value='Uploading..';
google.script.run.withSuccessHandler(fileUploaded)
.uploadFiles(this.parentNode);
return false;">
</form>
在此先感謝。 乾杯 萬何日
誰能給我這有多個上傳共享谷歌的腳本,我真的需要它。我的恥辱不是成爲程序員。 –