Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Spotify 应用程序的 JS 中,我保存了一个 cookie,它可以在同一应用程序的其他页面中正常检索。
但是,在退出并再次启动 Spotify 后,cookie 不再存在。
关于为什么会发生这种情况的任何想法?
请改用 localstarage。Cookie 不存储在磁盘上。
localStorage.setItem("name", "Hello World!"); localStorage.getItem("name"); // Hello World!