針對使用複選選單的 SelectionInput
小工具,這是 Google 的資料來源
Workspace 服務。用於在複選選單中填入項目。
const platformDataSource = CardService.newPlatformDataSource() .setCommonDataSource(CardService.CommonDataSource.USER); const multiSelect = CardService.newSelectionInput() .setType(CardService.SelectionInputType.MULTI_SELECT) .setFieldName("contacts") .setTitle("Selected contacts") .setMultiSelectMaxSelectedItems(5) .setMultiSelectMinQueryLength(1) .setPlatformDataSource(platformDataSource);
僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
setCommonDataSource(commonDataSource) | PlatformDataSource | 設定 Google Workspace 的資料來源。 |
setHostAppDataSource(hostAppDataSource) | PlatformDataSource | 用於在複選選單中填入空格。 |
內容詳盡的說明文件
setCommonDataSource(commonDataSource)
設定 Google Workspace 的資料來源。
const platformDataSource = CardService.newPlatformDataSource() .setCommonDataSource(CardService.CommonDataSource.USER); const multiSelect = CardService.newSelectionInput() .setType(CardService.SelectionInputType.MULTI_SELECT) .setFieldName("contacts") .setTitle("Selected contacts") .setMultiSelectMaxSelectedItems(5) .setMultiSelectMinQueryLength(1) .setPlatformDataSource(platformDataSource);僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。
參數
名稱 | 類型 | 說明 |
---|---|---|
commonDataSource | CommonDataSource | 要設定的資料來源。 |
回攻員
PlatformDataSource
:這個物件用於鏈結。
setHostAppDataSource(hostAppDataSource)
用於在複選選單中填入空格。
const chatSpaceDataSource = CardService.newChatSpaceDataSource() .setDefaultToCurrentSpace(true); const chatClientDataSource = CardService.newChatClientDataSource() .setSpaceDataSource(chatSpaceDataSource); const hostAppDataSource = CardService.newHostAppDataSource() .setChatDataSource(chatClientDataSource); const platformDataSource = CardService.newPlatformDataSource() .setHostAppDataSource(hostAppDataSource); const multiSelect = CardService.newSelectionInput() .setType(CardService.SelectionInputType.MULTI_SELECT) .setFieldName("contacts") .setTitle("Selected contacts") .setMultiSelectMaxSelectedItems(5) .setMultiSelectMinQueryLength(1) .setPlatformDataSource(platformDataSource);僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。
參數
名稱 | 類型 | 說明 |
---|---|---|
hostAppDataSource | HostAppDataSource | 要設定的資料來源。 |
回攻員
PlatformDataSource
:這個物件用於鏈結。