Class Choice

選擇

與支援 CheckboxItemListItemMultipleChoiceItem 等選項的 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

getPageNavigationType()

取得回應者選取此選項時出現的 PageNavigationType。 完成目前頁面的程序這個方法僅適用於與 MultipleChoiceItems 相關聯的選項。針對其他選項,系統會傳回 null

回攻員

PageNavigationType:這個選項的導覽動作;如果沒有導覽動作,則為 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