对于使用多选菜单的 SelectionInput
widget,一个来自 Google 的数据源
Workspace 应用。数据源会填充多选菜单的选项项。
const chatSpaceDataSource = CardService.newChatSpaceDataSource() .setDefaultToCurrentSpace(true); const chatClientDataSource = CardService.newChatClientDataSource() .setSpaceDataSource(chatSpaceDataSource); const hostAppDataSource = CardService.newHostAppDataSource() .setChatDataSource(chatClientDataSource);
仅适用于 Google Chat 应用。不适用于 Google Workspace 插件。
方法
方法 | 返回类型 | 简介 |
---|---|---|
setChatDataSource(chatClientDataSource) | HostAppDataSource | 设置 Google Chat 的数据源。 |
详细文档
setChatDataSource(chatClientDataSource)
设置 Google Chat 的数据源。
const chatSpaceDataSource = CardService.newChatSpaceDataSource() .setDefaultToCurrentSpace(true); const chatClientDataSource = CardService.newChatClientDataSource() .setSpaceDataSource(chatSpaceDataSource); const hostAppDataSource = CardService.newHostAppDataSource() .setChatDataSource(chatClientDataSource);
参数
名称 | 类型 | 说明 |
---|---|---|
chatClientDataSource | ChatClientDataSource | 要设置的数据源。 |
返回
HostAppDataSource
- 此对象,用于链接。