Enum FeedbackType
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
FeedbackType
อาร์เรย์แบบจำกัดที่แสดงประเภทความคิดเห็นที่รองรับ เข้าถึงประเภทความคิดเห็นได้จาก FormApp.FeedbackType
หากต้องการเรียกใช้ enum ให้เรียกคลาสหลัก ชื่อ และพร็อพเพอร์ตี้ของ enum นั้น เช่น
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(),
);
พร็อพเพอร์ตี้
พร็อพเพอร์ตี้ | ประเภท | คำอธิบาย |
CORRECT | Enum | ความคิดเห็นที่แสดงต่อผู้ตอบโดยอัตโนมัติสําหรับคําถามที่ตอบถูกต้อง
คุณจะแนบความคิดเห็นที่ถูกต้องได้กับคำถามประเภทที่รองรับการให้คะแนนอัตโนมัติเท่านั้น (เช่น ตัวเลือกแบบเลือก ช่องทำเครื่องหมาย เลือก) |
INCORRECT | Enum | ความคิดเห็นที่แสดงต่อผู้ตอบโดยอัตโนมัติสำหรับคำถามที่ตอบไม่ถูกต้อง
ความคิดเห็นที่ไม่ถูกต้องจะแนบไปกับคำถามประเภทที่รองรับการให้คะแนนอัตโนมัติเท่านั้น (เช่น ตัวเลือกแบบปุ่มตัวเลือก ช่องทำเครื่องหมาย เลือก) |
GENERAL | Enum | ความคิดเห็นที่แสดงต่อผู้ตอบโดยอัตโนมัติเมื่อส่งคำตอบ
คุณจะแนบความคิดเห็นทั่วไปได้กับคำถามประเภทที่ไม่รองรับการให้คะแนนอัตโนมัติแต่ให้คะแนนได้ (เช่น คำถามทุกประเภทยกเว้นตารางกริด) |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003e\u003ccode\u003eFeedbackType\u003c/code\u003e is an enum used to represent different types of feedback in Google Forms, accessible via \u003ccode\u003eFormApp.FeedbackType\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt includes three properties: \u003ccode\u003eCORRECT\u003c/code\u003e, \u003ccode\u003eINCORRECT\u003c/code\u003e, and \u003ccode\u003eGENERAL\u003c/code\u003e, used to specify feedback for correct answers, incorrect answers, and general feedback respectively.\u003c/p\u003e\n"],["\u003cp\u003eFeedback is displayed to respondents automatically based on their answers and the type of feedback specified.\u003c/p\u003e\n"],["\u003cp\u003eEach feedback type is associated with specific question types it can be applied to for providing targeted feedback to users.\u003c/p\u003e\n"]]],[],null,["# Enum FeedbackType\n\nFeedbackType\n\nAn enum representing the supported types of feedback. Feedback types can be accessed from [FormApp.FeedbackType](/apps-script/reference/forms/form-app#FeedbackType).\n\nTo call an enum, you call its parent class, name, and property. For example, `\nFormApp.FeedbackType.CORRECT`.\n\n```javascript\n// Open a form by ID and add a new list item.\nconst form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');\nconst item = form.addListItem();\nitem.setTitle('Do you prefer cats or dogs?');\n// Set \"Dogs\" as the correct answer to this question.\nitem.setChoices([\n item.createChoice('Dogs', true),\n item.createChoice('Cats', false),\n]);\n// Add feedback which will be shown for correct responses; ie \"Dogs\".\nitem.setFeedbackForCorrect(\n FormApp.createFeedback().setDisplayText('Dogs rule, cats drool.').build(),\n);\n``` \n\n### Properties\n\n| Property | Type | Description |\n|-------------|--------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `CORRECT` | `Enum` | Feedback that is automatically displayed to respondents for a question answered correctly. Correct feedback can only be attached to a question type that supports autograding (e.g. radio, checkbox, select) |\n| `INCORRECT` | `Enum` | Feedback that is automatically displayed to respondents for a question answered incorrectly. Incorrect feedback can only be attached to a question type that supports autograding (e.g. radio, checkbox, select) |\n| `GENERAL` | `Enum` | Feedback that is automatically displayed to respondents when they submit their response. General feedback can only be attached to question types that do not support auto-grading, but are gradeable (ie everything but grid) |"]]