在模板中,我可以得到类似res:imageName
如何从打字稿代码获取图像?只需指定资源文件的完整路径?
答案 0 :(得分:1)
代码也一样。 res://image
在您的html中
<Image [src]="getImageSource(logo_white_bg)" stretch="none" class="img-rounded p-l-15 p-r-15 p-t-15"></Image>
如果您要将图像保存在iOS的特定文件夹(例如“徽标”)中 在您的.ts文件中
getImageSource(icon: string) {
return isAndroid ? `res://${icon}` : 'res://logos/' + icon;
}