跳到主要内容

useCollaborators

获取小程序的当前所在运行环境协同者信息(包括自己),所在运行环境包含仪表盘、维格表、镜像。

暂不支持使用协作者 ID 写入成员字段单元格

注意: 由于维格表可以分享出去,所以在未登录的情况下的协同者的id、name、avatar都是 undefined

返回值

{ id: undefined | string ; name: undefined | string ; avatar: undefined | string }[]

示例

import { useCollaborators } from '@apitable/widget-sdk';

// 显示小程序当前环境协同者
function Meta() {
const collaborators = useCollaborators();
return (<div>
<div>当前协同者:{collaborators.map(collaborator => {
return <p>{collaborator.name || '外星人'}</p>
})}</div>
</div>);
}