Class QuizFeedback

クイズのフィードバック

フィードバックの Bean 実装。表示テキストやリンクなど、すべてのフィードバックに共通のプロパティが含まれています。

フィードバックは、採点可能な 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[]フィードバックに関連付けられている URL のリストを取得します。
getText()Stringフィードバックの表示テキストを取得します。

詳細なドキュメント

getLinkUrls()

フィードバックに関連付けられている URL のリストを取得します。これらは、役立つリンクのリストとしてユーザーに表示されます。

戻る

String[] - フィードバックに関連付けられた URL のリスト


getText()

フィードバックの表示テキストを取得します。このテキストは、ユーザーが回答を送信した後に表示されます。

戻る

String - フィードバックのテキスト