blockly >注册表 >getObject

Registry.getObject() 函数

获取具有指定名称和类型的对象。

Signature:

export declare function getObject<T>(type: string | Type<T>, name: string, opt_throwIfMissing?: boolean): T | null;

参数

参数 类型 说明
类型 字符串 |类型<T> 插件的类型。(例如“类别”)
name 字符串 插件的名称。(例如:logical_category)
opt_throwIfMissing 布尔值 (可选)我们无法找到对象时是否抛出错误。

返回

T |null

具有指定名称和类型的对象;如果不存在,则返回 null。