这是我的代码:
public storeOrchData(data: any, path: string, directRoute?: string) {
data.forEach((item: any) => {
this.orchDataObj[item.title] = item;
})
directRoute ? this.orchData.next({ parent: path, data: this.orchDataObj, directRoute: directRoute }) : this.orchData.next({ parent: path, data: this.orchDataObj })
}
即使在页面刷新时,我也希望保留“ orchData”值。现在,我遇到了许多类似的问题,几乎所有问题都提到了本地存储或会话存储。我想知道除了本地/会话存储以外是否还有其他方法。