会话变量
如何在 GWT 中添加对整个应用程序可见的会话变量?
就像在 C# 中一样,您会执行类似
Session.Add("mySessionVal", "Hello");
How do you do this in GWT?
的操作?谢谢
How can i add Session Variable visible to the whole application in GWT?
like in C# you would do something like
Session.Add("mySessionVal", "Hello");
How do you do this in GWT?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GWT 是客户端,Web 会话是服务器端。
GWT 应用程序不是典型的逐页 Web 应用程序。您始终停留在同一页面(检查浏览器中的网址栏)。
因此,您可以简单地在某个类中设置一个全局(公共静态)字段,并且 GWT 应用程序中的所有其他对象都可以看到该字段。
GWT is client side, web sessions are server-side.
GWT applications are not typical page-by-page web application. You always stay on the same page (check URL bar in browser).
So, you can simply set a global (public static) field in some class and it will be visible by all other objects in GWT app.
这可能足以访问整个 GWT 应用程序中的变量:
开发人员指南 - 客户端-侧面存储(网络存储)
This might suffice the purpose of accessing variables in the entire GWT application:
Developer's Guide - Client-side Storage (Web Storage)