反馈的 Bean 实现,其中包含所有反馈共有的属性,例如 显示文字或链接
您可以将反馈添加到可评分的 Form
项中。
// Setting feedback which should be automatically shown when a user responds to a question // incorrectly. var textItem = form.addTextItem().setTitle('Re-hydrating dried fruit is an example of what?'); var 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
- 反馈的文本