更新版小工具的回應。用於在 Selection
中為多重選取選單提供自動完成選項。
const updatedWidget = CardService.newUpdatedWidget() .addItem( 'item_one_title', 'item_one_value', false, 'item_one_uri', 'item_one_bottom_text', ) .addItem( 'item_two_title', 'item_two_value', false, 'item_two_uri', 'item_two_bottom_text', );
僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
add | Updated | 新增可選取的新項目。 |
內容詳盡的說明文件
add Item(text, value, selected, startIconUri, bottomText)
新增可選取的新項目。
const updatedWidget = CardService.newUpdatedWidget() .addItem( 'item_one_title', 'item_one_value', false, 'item_one_uri', 'item_one_bottom_text', ) .addItem( 'item_two_title', 'item_two_value', false, 'item_two_uri', 'item_two_bottom_text', );僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。
參數
名稱 | 類型 | 說明 |
---|---|---|
text | Object | 這個項目要顯示的文字。非字串原始引數會自動轉換為字串。 |
value | Object | 透過回呼傳送的表單輸入值。非字串原始引數會自動轉換為字串。 |
selected | Boolean | 該項目是否預設為選取狀態。如果選取輸入內容只接受一個值 (例如圓形按鈕或下拉式選單),請只為一個項目設定這個欄位。 |
start | Object | 對於多重選取選單,則是項目文字欄位旁顯示的圖示網址。支援 PNG 和 JPEG 檔案。 |
bottom | Object | 對於多重選取選單,則是顯示在項目文字欄位下方的文字說明或標籤。 |
回攻員
Updated
:這個物件用於鏈結。