允許作答者評分的題項。您可以透過 Form
存取或建立項目。在測驗中使用時,這些項目會獲得評分。
// Open a form by ID const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); // Get an existing rating item and access its properties. const existingRatingItem = form.getItems(FormApp.ItemType.RATING)[0].asRatingItem(); const ratingScaleLevel = existingRatingItem.getRatingScaleLevel(); const ratingIcon = existingRatingItem.getRatingIcon(); // Create a new rating item. const ratingItem = form.addRatingItem(); // Update the rating item's properties via chaining. ratingItem.setRatingScaleLevel(7).setRatingIcon(FormApp.RatingIconType.HEART);
方法
內容詳盡的說明文件
create Response(response)
為這個評分項目建立新的 Item
。
如果提供的 response
小於 1
或大於 get
傳回的值,就會擲回指令碼例外狀況。
// Open a form by ID const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); // Get an existing rating item and create a response for it. const item = form.getItems(FormApp.ItemType.RATING)[0].asRatingItem(); const response =item.createResponse(5);
參數
名稱 | 類型 | 說明 |
---|---|---|
response | Integer | 這個評分項目的值答案。 |
回攻員
Item
:項目回應。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
duplicate()
建立此項目的副本,並附加至表單結尾。
回攻員
Rating
:這個 Rating
的複本,用於鏈結
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get General Feedback()
傳回回應者在回答可評分的題目時,系統向他們顯示的意見回饋。
回攻員
Quiz
- 意見回饋 (如果有的話)。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Help Text()
取得項目的說明文字 (有時稱為版面配置項目的說明文字,例如 Image
、Page
和 Section
)。
回攻員
String
:項目的說明文字或說明文字
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Id()
取得項目的專屬 ID。
回攻員
Integer
:商品 ID
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Index()
取得表單中所有項目中的項目索引。
回攻員
Integer
:項目索引
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Points()
傳回可評分的項目分數。
回攻員
Integer
:問題的分數。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Rating Icon()
取得為評分選取的圖示。
// Open a form by ID const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); // Get an existing rating item and get its rating icon. const item = form.getItems(FormApp.ItemType.RATING)[0].asRatingItem(); const ratingIcon = item.getRatingIcon();
回攻員
Rating
:評分圖示類型。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Rating Scale Level()
取得評分的等級。
// Open a form by ID const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); // Get an existing rating item and get its rating scale level. const item = form.getItems(FormApp.ItemType.RATING)[0].asRatingItem(); const ratingScaleLevel = item.getRatingScaleLevel();
回攻員
Integer
:評分等級。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Title()
取得項目的標題 (在 Section
的情況下,有時稱為標頭文字)。
回攻員
String
:項目的標題或標頭文字
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
get Type()
is Required()
決定受訪者是否必須回答問題。
回攻員
Boolean
:受訪者是否必須回答問題
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
set General Feedback(feedback)
當作答者回覆沒有正確或錯誤答案的評分問題 (也就是需要手動評分的題目) 時,系統會顯示這項回饋。
參數
名稱 | 類型 | 說明 |
---|---|---|
feedback | Quiz | 新的意見回饋 |
回攻員
Rating
— 這個 Rating
,用於鏈結
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
set Help Text(text)
設定項目的說明文字 (對於 Image
、Page
和 Section
等版面配置項目,有時稱為說明文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
text | String | 新的說明文字 |
回攻員
Rating
— 這個 Rating
,用於鏈結
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
set Points(points)
設定可評分的項目可獲得的分數。新項目的預設值為 0。
參數
名稱 | 類型 | 說明 |
---|---|---|
points | Integer | 問題項目的分數 |
回攻員
Rating
— 這個 Rating
,用於鏈結
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
set Rating Icon(ratingIcon)
設定分級圖示。
如果評分圖示類型無效,就會擲回指令碼例外狀況。
// Open a form by ID const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); // Get an existing rating item and set its rating icon. const item = form.getItems(FormApp.ItemType.RATING)[0].asRatingItem(); item.setRatingIcon(FormApp.RatingIconType.THUMB_UP);
參數
名稱 | 類型 | 說明 |
---|---|---|
rating | Rating | 評分圖示類型。 |
回攻員
Rating
:這個 Rating
,用於鏈結。
擲回
Error
- 如果評分圖示類型無效
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
set Rating Scale Level(ratingScaleLevel)
設定分級的最高量表等級。評分最高等級必須介於 3
和 10
之間 (含首尾)。新評分預設為 3
的評分等級。
如果指定的值超出允許範圍,就會擲回指令碼例外狀況。
// Open a form by ID const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); // Get an existing rating item and set its rating scale level. const item = form.getItems(FormApp.ItemType.RATING)[0].asRatingItem(); item.setRatingScaleLevel(7);
參數
名稱 | 類型 | 說明 |
---|---|---|
rating | Integer | 評分等級。 |
回攻員
Rating
:這個 Rating
,用於鏈結。
擲回
Error
:如果評分等級無效
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
set Required(enabled)
設定受訪者是否必須回答問題。
參數
名稱 | 類型 | 說明 |
---|---|---|
enabled | Boolean | 是否要求受訪者回答問題 |
回攻員
Rating
:目前的項目 (用於鏈結)
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
set Title(title)
設定項目的標題 (在 Section
的情況下,有時稱為標頭文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
title | String | 新的標題或標頭文字 |
回攻員
Rating
— 這個 Rating
,用於鏈結
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms