将第一页中的所有 cookie 保存在硬盘上的文本文件中
我需要将第一页中的所有 cookie 保存在硬盘上的文本文件中。
如何用 JavaScript 做到这一点?
I need to save all cookies from first page in text file on hard disk.
How to do this with javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出于安全原因,您不能使用 JavaScript 来读取/写入客户端计算机上的文件。您可以读/写cookie,这些cookie可能是持久的,如果它们是持久的,它们实际上会被存储通过客户端计算机上的浏览器进行操作,但完成此操作的方式和位置超出了您的控制范围。
For security reasons you cannot use javascript to read/write files on the client computer. You can read/write cookies which could be persistent and if they are persistent they are actually stored by the browser on the client computer but the way and location this is done is out of your control.