我想显示来自本地路径的令牌图像,
看起来像这样(ProfileImageLocalPath
):"/data/data/com.nativescript.app/files/app/audit/b25b1229-3100-4b32-a381-8ca506d58d00_b25b1229-3100-4b32-a381-8ca506d58d00.png"
我的initDataItems()如下所示
private initDataItems() {
this._items = new ObservableArray<tokenmodel>();
for (let i = 0; i < this.users.length; i++) {
this._items.push(new UserModel(this.users[i], i, this.users[i].DisplayName,
this.users[i].ProfileImageLocalPath));
}
}
我具有如下扩展的令牌模型:
export class UserModel extends TokenModel {
public Item: any;
public ItemIndex: any;
public Text: string;
constructor(Item: any, ItemIndex: any, Text: string, image: string) {
super(Text, image);
this.Item = Item;
this.ItemIndex = ItemIndex;
}
toString() {
return this.Item.ItemId;
}
}
但是我的令牌没有显示任何图像。
仅在使用图像资源路径时显示图像:"res://some_image"
有什么主意吗?我在做什么错了?