-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如何优雅实现多页/跨页面状态管理? #87
Comments
多页在web上通信可以用cookie之类的来存储 |
不是本地储存是通信。。。 cookie 怎么通信?通信指的是
全局状态管理还包括
在单页里,实现状态同步很简单。kbone 单个页面也没问题。但现在多个页面没办法实例都不是一个 |
小程序页面生命周期事件,打开页面 返回页面后,更新页面数据,缺点是,不实时 |
这个方案之一,不过不推荐,因为小程序的生命周期web没有。 而两者都有的是对storage(kbone自己封装了所以支持)的监听,所以推荐使用这个方案。 |
非常给力 |
由于遵循 web 端多页机制,以往的的全局状态管理方法都不太合适
所以,有什么优雅的办法来解决多页/跨页面的状态管理?
现在
window.addEventListener('storage',()=>{})
的也用不行The text was updated successfully, but these errors were encountered: