允許受訪者指明一天中某個時段的問題項目。您可以透過 Form
存取或建立項目。在測驗中使用時,這些項目會獲得評分。
// Open a form by ID and add a new time item. const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); const item = form.addTimeItem(); item.setTitle('What time do you usually wake up in the morning?');
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
createResponse(hour, minute) | ItemResponse | 為這個時間項目建立新的 ItemResponse 。 |
duplicate() | TimeItem | 建立此項目的副本,並附加至表單結尾。 |
getGeneralFeedback() | QuizFeedback | 傳回回應者在回答可評分的題目時,系統向他們顯示的意見回饋。 |
getHelpText() | String | 取得項目的說明文字 (有時稱為版面配置項目的說明文字,例如 ImageItems 、PageBreakItems 和 SectionHeaderItems )。 |
getId() | Integer | 取得項目的專屬 ID。 |
getIndex() | Integer | 取得表單中所有項目中的項目索引。 |
getPoints() | Integer | 傳回可評分的項目分數。 |
getTitle() | String | 取得項目的標題 (在 SectionHeaderItem 的情況下,有時稱為標頭文字)。 |
getType() | ItemType | 取得項目的類型,以 ItemType 表示。 |
isRequired() | Boolean | 決定受訪者是否必須回答問題。 |
setGeneralFeedback(feedback) | TimeItem | 當作答者回覆沒有正確或錯誤答案的評分問題 (也就是需要手動評分的題目) 時,系統會顯示這項回饋。 |
setHelpText(text) | TimeItem | 設定項目的說明文字 (對於 ImageItems 、PageBreakItems 和 SectionHeaderItems 等版面配置項目,有時稱為說明文字)。 |
setPoints(points) | TimeItem | 設定可評分的項目可獲得的分數。 |
setRequired(enabled) | TimeItem | 設定受訪者是否必須回答問題。 |
setTitle(title) | TimeItem | 設定項目的標題 (在 SectionHeaderItem 的情況下,有時稱為標頭文字)。 |
內容詳盡的說明文件
createResponse(hour, minute)
為這個時間項目建立新的 ItemResponse
。引數 hour
和 minute
最好分別以 0
到 23
和 0
到 59
的整數表示。如果超過這些界線,則會以時鐘的方式運作:例如 10, 90
會解讀為 11:30,而 -1, 60
會解讀為 00:00。
參數
名稱 | 類型 | 說明 |
---|---|---|
hour | Integer | 小時,以 0 到 23 的整數表示 |
minute | Integer | 小時的分鐘,以整數表示,範圍為 0 到 59 |
回攻員
ItemResponse
:項目回應
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
duplicate()
getGeneralFeedback()
傳回回應者在回答可評分的題目時,系統向他們顯示的意見回饋。
回攻員
QuizFeedback
- 意見回饋 (如果有的話)。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getHelpText()
取得項目的說明文字 (有時稱為版面配置項目的說明文字,例如 ImageItems
、PageBreakItems
和 SectionHeaderItems
)。
回攻員
String
:項目的說明文字或說明文字
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getId()
取得項目的專屬 ID。
回攻員
Integer
:商品 ID
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getIndex()
取得表單中所有項目中的項目索引。
回攻員
Integer
:項目索引
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getPoints()
傳回可評分的項目分數。
回攻員
Integer
:問題的分數。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getTitle()
取得項目的標題 (在 SectionHeaderItem
的情況下,有時稱為標頭文字)。
回攻員
String
:項目的標題或標頭文字
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getType()
isRequired()
決定受訪者是否必須回答問題。
回攻員
Boolean
:受訪者是否必須回答問題
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setGeneralFeedback(feedback)
當作答者回覆沒有正確或錯誤答案的評分問題 (也就是需要手動評分的題目) 時,系統會顯示這項回饋。
參數
名稱 | 類型 | 說明 |
---|---|---|
feedback | QuizFeedback | 新的意見回饋 |
回攻員
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setHelpText(text)
設定項目的說明文字 (對於 ImageItems
、PageBreakItems
和 SectionHeaderItems
等版面配置項目,有時稱為說明文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
text | String | 新的說明文字 |
回攻員
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setPoints(points)
setRequired(enabled)
setTitle(title)
設定項目的標題 (在 SectionHeaderItem
的情況下,有時稱為標頭文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
title | String | 新的標題或標頭文字 |
回攻員
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms