如何从TypeScript中的资源获取NativeScript图像?

时间:2019-05-06 13:33:40

标签: nativescript nativescript-angular

在模板中,我可以得到类似res:imageName

的图像

如何从打字稿代码获取图像?只需指定资源文件的完整路径?

1 个答案:

答案 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;
    }