Forma bir bütün olarak verilen yanıt. FormResponse
üç şekilde kullanılabilir: erişmek
(bkz. getItemResponses()
) tarafından programatik olarak gönderilen yanıtlar
forma bir yanıt gönderin (bkz. withItemResponse(response)
ve submit()
) ve sağlanan alanları kullanarak alanları önceden dolduran, form için bir URL oluşturmak
cevaplar. FormResponse
öğeleri bir Form
üzerinden oluşturulabilir veya bunlara erişilebilir.
// Open a form by ID and log the responses to each question. var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); var formResponses = form.getResponses(); for (var i = 0; i < formResponses.length; i++) { var formResponse = formResponses[i]; var itemResponses = formResponse.getItemResponses(); for (var j = 0; j < itemResponses.length; j++) { var itemResponse = itemResponses[j]; Logger.log('Response #%s to the question "%s" was "%s"', (i + 1).toString(), itemResponse.getItem().getTitle(), itemResponse.getResponse()); } }
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
getEditResponseUrl() | String | Gönderilmiş bir yanıtı düzenlemek için kullanılabilecek bir URL oluşturur. |
getGradableItemResponses() | ItemResponse[] | Bir form yanıtında yer alan tüm öğe yanıtlarını, öğelerin göründüğü sırayla alır iletişim bilgileri paylaşacağım. |
getGradableResponseForItem(item) | ItemResponse | Belirli bir öğe için form yanıtında yer alan öğe yanıtını alır. |
getId() | String | Form yanıtının kimliğini alır. |
getItemResponses() | ItemResponse[] | Bir form yanıtında yer alan tüm öğe yanıtlarını, öğelerin göründüğü sırayla alır iletişim bilgileri paylaşacağım. |
getRespondentEmail() | String | Form.setCollectEmail(collect) ayarı etkinse yanıt gönderen kişinin e-posta adresini alır. |
getResponseForItem(item) | ItemResponse | Belirli bir öğe için bu form yanıtında yer alan öğe yanıtını alır. |
getTimestamp() | Date | Form yanıtı gönderiminin zaman damgasını alır. |
submit() | FormResponse | Yanıtı gönderir. |
toPrefilledUrl() | String | Bu formdaki yanıtlara göre yanıtların önceden doldurulduğu formun URL'sini oluşturur. gerekir. |
withItemGrade(gradedResponse) | FormResponse | Belirtilen öğe yanıtının notlarını bir form yanıtına ekler. |
withItemResponse(response) | FormResponse | Belirtilen öğe yanıtını form yanıtına ekler. |
Ayrıntılı belgeler
getEditResponseUrl()
Gönderilmiş bir yanıtı düzenlemek için kullanılabilecek bir URL oluşturur. Öğe
Form.setAllowResponseEdits(enabled)
ayarı devre dışı. Bağlantı şu sayfaya yönlendiriyor:
, form yanıtlarını düzenlemenin devre dışı olduğunu açıklar. Bağlantıyı ziyaret eden herkes
yanıtıyla birlikte, Form.setRequireLogin(requireLogin)
ayarı etkinse forma erişimi olan bir hesaba ihtiyaçları vardır. Form.setCollectEmail(collect)
ayarı etkinleştirildiğinde form, yanıtı düzenleyen kullanıcının e-posta adresini kaydeder.
adresine e-posta gönderin.
Bu yöntem, komut dosyasının oluşturduğu ancak henüz gönderilmediği bir form yanıtı için
null
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets the first form response. const formResponse = form.getResponses()[0]; // Gets the edit URL for the first form response and logs it to the console. const editUrl = formResponse.getEditResponseUrl(); console.log(editUrl);
Return
String
— Gönderilen bir yanıtı değiştirmek için kullanılacak URL.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getGradableItemResponses()
Bir form yanıtında yer alan tüm öğe yanıtlarını, öğelerin göründüğü sırayla alır
iletişim bilgileri paylaşacağım. Bu yöntem getItemResponses()
yöntemine benzer şekilde çalışır ancak notlandırmaya olanak tanır
cevap eksikse, karşılık gelen Item
ise yine de ItemResponse
döndürüyor
gerçek bir yanıt olmasa bile not verilebilir (yani bir puan değeri vardır). Ancak,
Item
notlandırılamaz. Bu yöntem, ilgili öğeyi döndürülen dizisinden hariç tutar.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets an array of the form's responses. const formResponses = form.getResponses(); // Gets the item responses contained in each form response. for (const formResponse of formResponses){ const gradableItemsResponses = formResponse.getGradableItemResponses(); // Logs the title and score for each item response to the console. for (const gradableItemsResponse of gradableItemsResponses) { console.log(`${gradableItemsResponse.getItem().getTitle()} score ${gradableItemsResponse.getScore()}`); } }
Return
ItemResponse[]
— Formdaki her soru öğesine verilen yanıtlar dizisi
puan alabilmelidir.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getGradableResponseForItem(item)
Belirli bir öğe için form yanıtında yer alan öğe yanıtını alır. Bu yöntem işe yarar
getResponseForItem(item)
benzeridir ancak eksik bir cevabın notlandırılmasına olanak tanımak için
ilgili Item
için not verilebiliyorsa (ör. puanı varsa) ItemResponse
döndürür
değeri) kullanabilirsiniz. Ancak Item
notlandırılamıyorsa
bu yöntem null
değerini döndürür.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets an array of the form's responses. const formResponses = form.getResponses(); // Gets the item responses contained in a form response. for (const formResponse of formResponses) { const formItemResponses = formResponse.getGradableItemResponses(); // Logs the title and score for responses to the first item of the form. const itemResponse = formResponse.getGradableResponseForItem(formItemResponses[0].getItem()); console.log(`${itemResponse.getItem().getTitle()} score ${itemResponse.getScore()}`); }
Parametreler
Ad | Tür | Açıklama |
---|---|---|
item | Item |
Return
ItemResponse
— Belirli bir öğenin yanıtı; herhangi bir öğe yoksa ve öğe not verilmediyse null
.
getId()
Form yanıtının kimliğini alır. Form yanıtı şunu döndürmezse bu yöntem null
değerini döndürür:
gönderildi.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets an array of the form's responses. const formResponses = form.getResponses(); // Loops through the form responses and logs the ID for each form response to the console. for (const formResponse of formResponses) { console.log(`Response ID: ${formResponse.getId()}`); }
Return
String
— Form yanıtının kimliği veya form yanıtı verilmediyse null
gönderildi.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getItemResponses()
Bir form yanıtında yer alan tüm öğe yanıtlarını, öğelerin göründüğü sırayla alır
iletişim bilgileri paylaşacağım. Form yanıtı belirli bir TextItem
için yanıt içermiyorsa
DateItem
, TimeItem
veya ParagraphTextItem
, ItemResponse
yanıt olarak boş bir dizeye sahip olur. Form yanıtında
yanıt almak istemiyorsanız bu yöntem, söz konusu öğeyi döndürülen dizisinden hariç tutar.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets the responses to the form. const formResponses = form.getResponses(); // Iterates over the responses. for (const formResponse of formResponses) { // Gets the item responses from each form response. const itemResponses = formResponse.getItemResponses(); // Iterates over the item responses. for (const itemResponse of itemResponses) { // Logs the items' questions and responses to the console. console.log(`Response to the question '${itemResponse.getItem().getTitle()}' was '${itemResponse.getResponse()}'`); } }
Return
ItemResponse[]
— Formdaki her soru öğesine verilen yanıtlar dizisi
bir yanıt verdi.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getRespondentEmail()
Form.setCollectEmail(collect)
ayarı etkinse yanıt gönderen kişinin e-posta adresini alır.
Bu yöntem, komut dosyasının oluşturduğu ancak henüz gönderilmediği bir form yanıtı için
null
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets an array of the form's responses. const formResponses = form.getResponses(); // Loops through the responses and logs each respondent's email to the console. // To collect respondent emails, ensure that Form.setCollectEmail(collect) is set to true. for (const formResponse of formResponses) { console.log(`Respondent Email: ${formResponse.getRespondentEmail()}`); }
Return
String
— Varsa bu yanıtı gönderen kişinin e-posta adresi veya komut dosyası bu yanıtı oluşturmuş ancak henüz göndermediyse null
.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getResponseForItem(item)
Belirli bir öğe için bu form yanıtında yer alan öğe yanıtını alır.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets the first item on the form. const item = form.getItems()[0]; // Gets an array of the form's responses. const formResponses = form.getResponses(); // Loops through the responses and logs each response to the first item to the console. for (const formResponse of formResponses) { const itemResponse = formResponse.getResponseForItem(item); console.log(itemResponse.getResponse()); }
Parametreler
Ad | Tür | Açıklama |
---|---|---|
item | Item |
Return
ItemResponse
— Belirli bir öğe için yanıt; yoksa null
.
getTimestamp()
Form yanıtı gönderiminin zaman damgasını alır.
Bu yöntem, komut dosyasının oluşturduğu ancak henüz gönderilmediği bir form yanıtı için
null
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets an array of the form's responses. const formResponses = form.getResponses(); // Loops through the responses and logs the timestamp of each response to the console. for (const formResponse of formResponses) { console.log(`Timestamp: ${formResponse.getTimestamp()}`); }
Return
Date
— Bu yanıtın gönderildiği zaman damgası veya komut dosyasıysa null
bu yanıtı oluşturdu, ancak henüz göndermedi.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
submit()
Yanıtı gönderir. Yanıt zaten gönderilmişse komut dosyası istisnası atar.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Creates an empty response for the form. const formResponse = form.createResponse(); // Submits an empty response. formResponse.submit();
Return
FormResponse
— Formun yanıt deposuna kaydedilen, yeni oluşturulmuş bir yanıt.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
toPrefilledUrl()
Bu formdaki yanıtlara göre yanıtların önceden doldurulduğu formun URL'sini oluşturur. gerekir.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Gets the first form response. const formResponse = form.getResponses()[0]; // Generates and logs the URL of a pre-filled form response based on the answers // of the first form response. const prefilledUrl = formResponse.toPrefilledUrl(); console.log(prefilledUrl);
Return
String
— Önceden doldurulmuş yanıtlar içeren bir formun URL'si.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
withItemGrade(gradedResponse)
Belirtilen öğe yanıtının notlarını bir form yanıtına ekler. Bu yöntem yalnızca daha önce gönderilmiş yanıtlar ve depolanan notları yalnızca gönderildikleri zaman etkiler gönderildi. Bu yöntem ayrıca yalnızca öğe yanıtının notlarını günceller; bu işlem (yanıt zaten gönderildiği için). Bu yöntem aynı öğe için birden çok kez gönderilmişse, yalnızca son not korunur. ItemResponse şunu içeriyorsa: herhangi bir not yoksa bu yöntem ilgili öğeye ilişkin notları kaldırır.
// Programmatically award partial credit for a given response var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); var formResponses = form.getResponses(); var formItems = form.getItems(); for (var i = 0; i < formResponses.length; i++) { var formResponse = formResponses[i]; for (var j = 0; j < formItems.length; j++) { var item = formItems[j]; var points = item.asMultipleChoiceItem().getPoints(); var itemResponse = formResponse.getGradableResponseForItem(item); Logger.log('Award half credit for answers containing the word "Kennedy"'); var answer = itemResponse.getResponse(); if (answer != null && answer.includes('Kennedy')) { itemResponse.setScore(points / 2); formResponse.withItemGrade(itemResponse); } } } form.submitGrades(formResponses);
Parametreler
Ad | Tür | Açıklama |
---|---|---|
gradedResponse | ItemResponse |
Return
FormResponse
— bu FormResponse
, zincirleme bağlantı için
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
withItemResponse(response)
Belirtilen öğe yanıtını form yanıtına ekler. Bu yöntem yalnızca form yanıtları için geçerlidir komut dosyasının oluşturulduğu ancak henüz gönderilmediği; depolanan yanıtları etkilemez. Bu yöntemi aynı öğe için birden çok kez çağrıldığında, yalnızca son öğenin yanıtı korunur.
// Opens the Forms file by its ID. // If you created your script from within a Google Forms file, you can // use FormApp.getActiveForm() instead. // TODO(developer): Replace the ID with your own. const form = FormApp.openById('abc123456'); // Creates a response for the form. const formResponse = form.createResponse(); // Appends a checkbox item to the form. const item = form.addCheckboxItem(); // Sets the title of the item to 'Which items are ice cream flavors?' item.setTitle('Which items are ice cream flavors?'); // Sets choices for the item. item.setChoices([ item.createChoice('Vanilla'), item.createChoice('Strawberry'), item.createChoice('Brick') ]); // Creates a response for the item. const response = item.createResponse(['Vanilla', 'Strawberry']); // Adds the item response to the form response. formResponse.withItemResponse(response); // Submits the form response. formResponse.submit();
Parametreler
Ad | Tür | Açıklama |
---|---|---|
response | ItemResponse |
Return
FormResponse
— Bu FormResponse
, zincirleme bağlantı için.
Yetkilendirme
Bu yöntemi kullanan komut dosyaları, aşağıdaki kapsamlardan bir veya daha fazlasıyla yetkilendirme gerektirir:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms