[]
        
(Showing Draft Content)

dashboard.VisualNS.AssetsManager

类: AssetsManager

dashboard.VisualNS.AssetsManager

Table of contents

构造方法

方法

构造方法

constructor

new AssetsManager()

方法

getImage

getImage(imageName): string

返回图片 base64 字符串。

参数

名称 类型
imageName string

返回值

string

示例代码

// 获取 assets 中定义的 image。
this.container.style.backgroundImage = `url(${host.assetsManager.getImage('testImg')})`;