Rumah >hujung hadapan web >tutorial js >Automasi untuk Borang Google
PT-BR
Saya diminta untuk mencipta borang pintar, di mana ia akan mengemas kini item tertentu mengikut apa yang dimasukkan pengguna. Sebagai sejenis ID.
Melalui AppsScript, saya mencipta kod berikut di bawah untuk mencapai ini:
function updateForms() { const id = "Enter your SpreadSheet ID here!"; const sheetName = "Enter the Sheet's name of items want to be auto uploads!"; const ss = SpreadsheetApp.openById(id); const sheet = ss.getSheetByName(sheetName); const range = sheet.getDataRange().getValues(); // i recommend you do a sheet only to set data'll be upload const choiceValues = [...new Set(range.map(row => row[0]).filter(value => value))]; const form = FormApp.openById("Enter your Forms ID here!"); const items = form.getItems(); for (var i in items) { if (items[i].getTitle() == "Set here the question name of Forms!") { items[i].asListItem().setChoiceValues(choiceValues); return; } } Logger.log("Nothing found..."); }
Kodnya adalah untuk mengemas kini data yang akan memberi laporan mingguan.
Cari maklumat lanjut dalam repositori.
EN-AS
Saya diminta membuat borang pintar yang akan mengemas kini item tertentu berdasarkan perkara yang dimasukkan pengguna. Seperti sejenis ID.
Menggunakan AppsScript, saya mencipta kod berikut untuk melakukan ini:
function updateForms() { const id = "Enter your SpreadSheet ID here!"; const sheetName = "Enter the Sheet's name of items want to be auto uploads!"; const ss = SpreadsheetApp.openById(id); const sheet = ss.getSheetByName(sheetName); const range = sheet.getDataRange().getValues(); // i recommend you do a sheet only to set data'll be upload const choiceValues = [...new Set(range.map(row => row[0]).filter(value => value))]; const form = FormApp.openById("Enter your Forms ID here!"); const items = form.getItems(); for (var i in items) { if (items[i].getTitle() == "Set here the question name of Forms!") { items[i].asListItem().setChoiceValues(choiceValues); return; } } Logger.log("Nothing found..."); }
Kodnya adalah untuk mengemas kini data yang akan memberi laporan mingguan.
Cari maklumat lanjut dalam repositori.
Atas ialah kandungan terperinci Automasi untuk Borang Google. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!