与支持选项的 Item
类型(例如 Checkbox
、List
或 Multiple
)关联的单个选项。
// Create a new form and add a multiple-choice item. const form = FormApp.create('Form Name'); const item = form.addMultipleChoiceItem(); item.setTitle('Do you prefer cats or dogs?').setChoices([ item.createChoice('Cats', FormApp.PageNavigationType.CONTINUE), item.createChoice('Dogs', FormApp.PageNavigationType.RESTART), ]); // Add another page because navigation has no effect on the last page. form.addPageBreakItem().setTitle('You chose well!'); // Log the navigation types that each choice results in. const choices = item.getChoices(); for (let i = 0; i < choices.length; i++) { Logger.log( 'If the respondent chooses "%s", the form will %s.', choices[i].getValue(), choices[i].getPageNavigationType(), ); }
方法
方法 | 返回类型 | 简介 |
---|---|---|
get | Page | 如果回复者选择此选项并完成当前页面,则获取设置为 GO_TO_PAGE 目的地的 Page 。 |
get | Page | 获取在回复者选择此选项并完成当前页面时发生的 Page 。 |
get | String | 获取选项的值,受访者在查看表单时会将其视为标签。 |
is | Boolean | 获取选项是否为相应题目的正确答案。 |
详细文档
get Goto Page()
如果回复者选择此选项并完成当前页面,则获取设置为 GO_TO_PAGE
目的地的 Page
。此方法仅适用于与 Multiple
关联的选项;对于其他选项,它会返回 null
。
返回
Page
- 此选项的 GO_TO_PAGE
目的地,如果没有,则为 null
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Value()
获取选项的值,受访者在查看表单时会将其视为标签。
返回
String
- 选项的值
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
is Correct Answer()
获取选项是否为相应题目的正确答案。此方法仅适用于知识问答的题目;对于非知识问答表单,它会返回 false。
返回
Boolean
- 选项是否为正确答案。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms