與支援 CheckboxItem
、ListItem
或 MultipleChoiceItem
等選項的 Item
類型相關聯的單一選項。
// Create a new form and add a multiple-choice item. var form = FormApp.create('Form Name'); var 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. var choices = item.getChoices(); for (var i = 0; i < choices.length; i++) { Logger.log('If the respondent chooses "%s", the form will %s.', choices[i].getValue(), choices[i].getPageNavigationType()); }
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
getGotoPage() | PageBreakItem | 取得 PageBreakItem 設為 GO_TO_PAGE 目的地
,如果作答者選擇此選項,並完成目前的頁面。 |
getPageNavigationType() | PageNavigationType | 取得回應者選取此選項時出現的 PageNavigationType 。
完成目前頁面的程序 |
getValue() | String | 取得選項值,作答者在瀏覽表單時會看到標籤。 |
isCorrectAnswer() | Boolean | 指出所選問題是否為正確答案。 |
內容詳盡的說明文件
getGotoPage()
取得 PageBreakItem
設為 GO_TO_PAGE
目的地
,如果作答者選擇此選項,並完成目前的頁面。這個方法僅適用於
與 MultipleChoiceItems
相關聯的選項;表示其他選擇
它會傳回 null
。
回攻員
PageBreakItem
:這個選項的 GO_TO_PAGE
目的地,如果沒有的話,則會是 null
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getValue()
取得選項值,作答者在瀏覽表單時會看到標籤。
回攻員
String
:選擇的值
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
isCorrectAnswer()
指出所選問題是否為正確答案。這個方法僅適用於 測驗中的問題;則會傳回 false。
回攻員
Boolean
- 選項是否為正確答案。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms