gpt4 book ai didi

javascript - Spotify 应用程序 - 维护页面之间的状态

转载 作者:太空宇宙 更新时间:2023-11-03 22:02:40 25 4
gpt4 key购买 nike

Fired 我正在开发 spotify 应用程序,根据他们的开发者网站,我了解到我只能使用 HTML/HTML5、javascript、css 进行开发现在我对开发有一些疑问:我有多个页面,每个页面都有特定的输入参数,我想在整个应用程序中跟踪这些参数例如作为用户输入的用户名。我怎样才能做到这一点 ,是否有任何类型的 session 管理工具或类似的东西?我如何处理来自不同页面的 mydata 以显示所需的结果。

最佳答案

根据 API Guidelines ,您可以利用 HTML localStorage API:

Your application will be able to use the local storage HTML5 API which as a limited amount of space available to your application (5 MB). Please be aware that any state you save here will be local, and hence you won’t be able to restore from it if the user logs into Spotify on another computer and browses to your application. To restore state regardless of which computer a user is currently using, please use your own backend.

可以在 MDC 上找到有关如何与 localStorage 交互的综合文档。 .

它归结为使用 window.localStorage.setItem(key, value)window.localStorage.getItem(key) 来设置和检索数据。

关于javascript - Spotify 应用程序 - 维护页面之间的状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9294204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com