קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
FeedbackType
enum שמייצג את סוגי המשוב הנתמכים. אפשר לגשת לסוגי המשוב דרך FormApp.FeedbackType.
כדי לקרוא למאפיין enum, צריך לקרוא לכיתה ההורה, לשם ולנכס שלו. לדוגמה,
FormApp.FeedbackType.CORRECT.
// Open a form by ID and add a new list item.constform=FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');constitem=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(),);
מאפיינים
נכס
סוג
תיאור
CORRECT
Enum
משוב שמוצג באופן אוטומטי למשתתפים על שאלה שהם ענו עליה נכון.
אפשר לצרף משוב על תשובות נכונות רק לשאלות מסוגים שתומכים בציון אוטומטי (למשל, שאלות עם אפשרויות לבחירה, שאלות עם תיבות סימון ושאלות עם תשובות קצרות).
INCORRECT
Enum
משוב שמוצג באופן אוטומטי למשתתפים לגבי שאלה שהם ענו עליה בצורה שגויה.
אפשר לצרף משוב על תשובות שגויות רק לשאלות מסוגים שתומכים במתן ציונים אוטומטי (למשל, תיבות סימון, בחירת תשובות מתוך רשימה או לחצני רדיו)
GENERAL
Enum
משוב שמוצג באופן אוטומטי למשתתפים כשהם שולחים את התשובה שלהם.
אפשר לצרף משוב כללי רק לסוגים של שאלות שלא תומכים במתן ציונים אוטומטי, אבל אפשר לתת להם ציונים (כלומר, כל סוגי השאלות מלבד 'שאלות עם רשת')
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 2024-12-22 (שעון 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."]]],[]]