Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
GeriBildirimTürü
Desteklenen geri bildirim türlerini temsil eden bir enum. Geri bildirim türlerine FormApp.FeedbackType adresinden erişilebilir.
Bir enum'u çağırmak için üst sınıfını, adını ve özelliğini çağırırsınız. Örneğin,
FormApp.FeedbackType.CORRECT.
// Open a form by ID and add a new list item.
const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
const item = form.addListItem();
item.setTitle('Do you prefer cats or dogs?');
// Set "Dogs" as the correct answer to this question.
item.setChoices([
item.createChoice('Dogs', true),
item.createChoice('Cats', false),
]);
// Add feedback which will be shown for correct responses; ie "Dogs".
item.setFeedbackForCorrect(
FormApp.createFeedback().setDisplayText('Dogs rule, cats drool.').build(),
);
Özellikler
Mülk
Tür
Açıklama
CORRECT
Enum
Doğru yanıtlanan bir soru için katılımcılara otomatik olarak gösterilen geri bildirim.
Doğru geri bildirim yalnızca otomatik notlandırmayı destekleyen soru türlerine (ör.radyo düğmesi, onay kutusu, seçim) eklenebilir.
INCORRECT
Enum
Yanlış yanıtlanan bir soru için katılımcılara otomatik olarak gösterilen geri bildirim.
Yanlış geri bildirim yalnızca otomatik notlandırmayı destekleyen soru türlerine (ör.radyo düğmesi, onay kutusu, seçim) eklenebilir.
GENERAL
Enum
Katılımcılar yanıtlarını gönderdiğinde otomatik olarak gösterilen geri bildirim.
Genel geri bildirim yalnızca otomatik notlandırmayı desteklemeyen ancak not verilebilen soru türlerine (ör. ızgara dışındaki tüm sorular) eklenebilir.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2024-12-02 UTC."],[[["`FeedbackType` is an enum used to represent different types of feedback in Google Forms, accessible via `FormApp.FeedbackType`."],["It includes three properties: `CORRECT`, `INCORRECT`, and `GENERAL`, used to specify feedback for correct answers, incorrect answers, and general feedback respectively."],["Feedback is displayed to respondents automatically based on their answers and the type of feedback specified."],["Each feedback type is associated with specific question types it can be applied to for providing targeted feedback to users."]]],[]]