如果是使用多重選取選單的 Selection
小工具,則為 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 外掛程式。
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
set | Platform | 設定 Google Workspace 的資料來源。 |
set | Platform | 用於在多重選取選單中填入空格。 |
內容詳盡的說明文件
set Common Data Source(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);
參數
名稱 | 類型 | 說明 |
---|---|---|
common | Common | 要設定的資料來源。 |
回攻員
Platform
:這個物件用於鏈結。
set Host App Data Source(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);
參數
名稱 | 類型 | 說明 |
---|---|---|
host | Host | 要設定的資料來源。 |
回攻員
Platform
:這個物件用於鏈結。