Class QuizFeedback
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
क्विज़ के लिए सुझाव, राय या शिकायत
सुझाव/राय/शिकायत/राय देने के लिए बीन लागू करना. इसमें सभी सुझाव/राय/शिकायत/राय के लिए सामान्य प्रॉपर्टी होती हैं, जैसे कि डिसप्ले टेक्स्ट या लिंक.
जिन Form
आइटम को ग्रेड दिया जा सकता है उन पर सुझाव, शिकायत या राय दी जा सकती है.
// Setting feedback which should be automatically shown when a user responds to
// a question incorrectly.
const form = FormApp.create('My Form');
const textItem = form.addTextItem().setTitle(
'Re-hydrating dried fruit is an example of what?');
const feedback =
FormApp.createFeedback()
.setDisplayText(
'Good answer, but not quite right. Please review chapter 4 before next time.',
)
.addLink('http://wikipedia.com/osmosis');
textItem.setFeedbackForIncorrect(feedback);
तरीके
तरीका | रिटर्न टाइप | संक्षिप्त विवरण |
getLinkUrls() | String[] | इससे, सुझाव/राय/शिकायत से जुड़े यूआरएल की सूची मिलती है. |
getText() | String | इससे सुझाव, शिकायत या राय का डिसप्ले टेक्स्ट मिलता है. |
ज़्यादा जानकारी वाला दस्तावेज़
getLinkUrls()
इससे, सुझाव/राय/शिकायत से जुड़े यूआरएल की सूची मिलती है. ये उपयोगकर्ता को मददगार लिंक की सूची के तौर पर दिखाए जाते हैं.
वापसी का टिकट
String[]
— सुझाव/राय/शिकायत/राय से जुड़े यूआरएल की सूची
getText()
इससे सुझाव, शिकायत या राय का डिसप्ले टेक्स्ट मिलता है. उपयोगकर्ता के जवाब सबमिट करने के बाद, उसे यह टेक्स्ट दिखता है.
वापसी का टिकट
String
— सुझाव/राय या शिकायत का टेक्स्ट
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003e\u003ccode\u003eQuizFeedback\u003c/code\u003e objects store common feedback properties like display text and links for Google Forms.\u003c/p\u003e\n"],["\u003cp\u003eFeedback can be linked to form items and automatically displayed based on user responses (e.g., incorrect answers).\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use \u003ccode\u003egetLinkUrls()\u003c/code\u003e and \u003ccode\u003egetText()\u003c/code\u003e methods to retrieve associated URLs and display text from \u003ccode\u003eQuizFeedback\u003c/code\u003e objects.\u003c/p\u003e\n"]]],["Feedback, used with gradeable form items, provides display text and links. Feedback is created via `FormApp.createFeedback()`, allowing the setting of display text with `setDisplayText()` and adding links with `addLink()`. `setFeedbackForIncorrect()` associates the feedback with a question to be shown on incorrect responses. The methods `getLinkUrls()` retrieves associated URLs, and `getText()` gets the feedback's display text. These features offer customized information and guidance for users.\n"],null,["# Class QuizFeedback\n\nQuizFeedback\n\nThe bean implementation of a Feedback, which contains properties common to all feedback, such as\ndisplay text or links.\n\nFeedback can be added to gradeable [Form](/apps-script/reference/forms/form) items.\n\n```javascript\n// Setting feedback which should be automatically shown when a user responds to\n// a question incorrectly.\nconst form = FormApp.create('My Form');\nconst textItem = form.addTextItem().setTitle(\n 'Re-hydrating dried fruit is an example of what?');\nconst feedback =\n FormApp.createFeedback()\n .setDisplayText(\n 'Good answer, but not quite right. Please review chapter 4 before next time.',\n )\n .addLink('http://wikipedia.com/osmosis');\ntextItem.setFeedbackForIncorrect(feedback);\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|---------------------------------|-------------|-------------------------------------------------------|\n| [getLinkUrls()](#getLinkUrls()) | `String[]` | Gets a list of the URLs associated with the Feedback. |\n| [getText()](#getText()) | `String` | Gets the Feedback's display text. |\n\nDetailed documentation\n----------------------\n\n### `get``Link``Urls()`\n\nGets a list of the URLs associated with the Feedback. These are displayed to the user as a list\nof helpful links.\n\n#### Return\n\n\n`String[]` --- a list of the URLs associated with the Feedback\n\n*** ** * ** ***\n\n### `get``Text()`\n\nGets the Feedback's display text. This text is shown to the user after they've submitted a\nresponse.\n\n#### Return\n\n\n`String` --- the Feedback's text"]]