Class HostAppDataSource

主机应用数据

对于使用多选菜单的 SelectionInput 微件,请使用 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);
仅适用于 Google Chat 应用。不适用于 Google Workspace 插件。

参数

名称类型说明
chatClientDataSourceChatClientDataSource要设置的数据源。

返回

HostAppDataSource - 此对象,用于链式调用。