卡片中的网络图片需要先预先缓存到缓存中,然后通过这种方式 @LocalStorageProp('imgName') imgName: ResourceStr = $r('app.string.imgName');通知卡片替换图片,想请教下如这种卡片展示方式,其数据结构大概是:
@LocalStorageProp("newsList") newsList: Array<NewsVO> = []
export class NewsVO {
thumb: string = '';
title: string = '';
}
每个新闻都有标题和网络图片,想请教下该如何处理?
卡片里面没有直接联网的权限,加载网络图片需需要先在FormExtensionAbility中下载,然后Image组件通过入参(memory://fileName)实现。