Variables.getVariable() 函数
在给定工作区中查找变量。请务必先查看主工作区,然后再查看浮出式工作区。始终倾向于按 ID 查找,而非按名称 + 类型查找。
Signature:
export declare function getVariable(workspace: Workspace, id: string | null, opt_name?: string, opt_type?: string): VariableModel | null;
参数
参数 | 类型 | 说明 |
---|---|---|
工作区 | Google Workspace | 用于搜索变量的工作区。该工作区可能是浮出工作区,也可能是主工作区。 |
id | 字符串 |null | 用于查找变量的 ID,否则为 null。 |
opt_name | 字符串 | (可选)用于查找变量的字符串。仅在按 ID 查找失败时使用。 |
opt_type | 字符串 | (可选)用于查找变量的类型。仅在按 ID 查找失败时使用。 |
返回:
VariableModel |null
与指定 ID 或名称 + 类型组合对应的变量,如果未找到,则为 null。