我试图存储类连接对象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)
有帮助吗?
预先感谢