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.
我已经使用自定义 http 处理程序实现了动态 CSS。有了这个,我为用户提供了一个选项来选择他们自己的 CSS/配色方案。
一切正常。但是当用户 A 登录时,他的配色方案加载但在会话时间结束后,css 配色方案将恢复为默认配色方案。
任何帮助将不胜感激-JB
会话变量在会话结束时销毁,就像单击注销按钮一样。
因此,如果您想保存用户的偏好,您可以将其保存在cookie中,也可以将其作为用户偏好样式保存在数据库中。
如果您将此设置保存在数据库中,那么您始终可以随时随地显示用户偏好样式。