Storing the Window Object in local storage(将 Window 对象存储在本地存储中)
问题描述
我需要持久化窗口对象的能力.我试图对窗口对象进行字符串化,但在尝试将窗口对象转换为 JSON 时收到错误消息.将循环结构转换为 JSON"错误.无论如何我可以将 window.open 中的 window 对象存储在本地商店中吗?
I need the ability to persist the window object. I tried to stringify the window object but I received and error when trying to convert the window object to JSON. "Converting circular structure to JSON" error. Is there anyway I can store the window object from a window.open in local store?
var myWindow = window.open("file:///D:/Temp/teststorage.html", "MsgWindow", "width=200, height=100");
localStorage.setItem('Window', JSON.stringify(myWindow));
推荐答案
你不能在本地存储中持久化 window
对象.
You can't persist a window
object in local storage.
在本地存储中只能以字符串的形式存储数据,没有办法将window
对象变成字符串以便重新创建相同的window代码>对象.
You can only store data in the form of strings in local storage, and there is no way to turn the window
object into a string so that you can recreate the same window
object.
这篇关于将 Window 对象存储在本地存储中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Window 对象存储在本地存储中
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01