类连接对象存储到本地存储Angular5中的错误

时间:2018-08-27 12:50:08

标签: angular local-storage angular5

我试图存储类连接对象localstorage并在Angular5中进入下一页,但是没有收到正确的数据对象。

这是我的代码: 在组件文件中

this.storage.setVariableToStorage('client', CircularJSON.stringify(client));

在服务文件中

setVariableToStorage(key: string, value: string): void {
    (key == 'client' || key == 'user') ? this[key] = JSON.parse(value) : this[key] = value;
    this.storage.set(key, value);
}

并将此存储存储在另一个组件console.log(this.storage.client)

有帮助吗?

预先感谢

0 个答案:

没有答案