Feedback 的 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);
方法
方法 | 返回类型 | 简介 |
---|---|---|
get | String[] | 获取与反馈关联的网址列表。 |
get | String | 获取反馈的显示文本。 |
详细文档
get Link Urls()
获取与反馈关联的网址列表。这些信息会以实用链接列表的形式显示给用户。
返回
String[]
- 与反馈关联的网址列表
get Text()
获取反馈的显示文本。系统会在用户提交回答后向其显示此文本。
返回
String
- 反馈的文本