我遇到了ngFor的问题,我为一个阵列做了ngFor以创建带图像的卡片,该阵列包含了网址,但是当我添加一个新的网址时,卡片图片显示但是当我重新加载网址时不见了从数组
<div class="card" *ngFor="let url of array">
我得到了这个在数组中添加url
this.array.push(url);
所以我被告知我需要一个本地存储,所以我不会丢失数据,所以我做了这个
test1=localStorage.setItem("arrayUrl", JSON.stringify(this.array));
local = JSON.parse(localStorage.getItem("arrayUrl"));
之后我做了这个
<div class="card" *ngFor="let url of local">
但它不起作用,因为添加到阵列时图像没有显示,所以我必须将url添加到数组或localstorage或其中?如何设置使用ngfor创建thoose卡片图像并永久制作