如何在应用程序中创建会话对象
在我的应用程序中,我想创建一个用于登录和注销的会话。
我不知道如何使用会话。 任何人都可以通过提供一些示例来帮助我。
In my app i want to create a session for login and log out.
I dont have any idea how to work with session.
Anybody help me by giving some sample example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为会话对象应该是在应用程序开始运行时声明和初始化的静态对象。我遇到了这个问题,并决定将我的会话对象放入 utils 类中,该类包含我的应用程序中每个活动使用的方法。
这是一个简短的示例:
为 utils 创建一个包含会话对象的类,Session 是您用来实现会话对象的类。例如,它可以包含 userId、userName 等:
按下登录按钮时初始化会话对象:
注销时您可以销毁您的会话对象。
这里是一个链接,介绍有关会话的更多信息。
I think the session object should be a static object declared and initialized when your application starts running. I have met this problem and decided to put my session object in a utils class which contains mathods used by every activity in my app.
Here is a short example:
create a class for utils which will contain session object, Session is the class by which you implement your session object. It can contain, for example, userId, userName, etc.:
When login button is pushed initialize your session object:
On logout you can destroy your session object.
Here is a link telling more about sessions.
如果您尝试在应用程序的生命周期中将一些数据保留在内存中,也许您应该考虑使用单例模式。我就是这样用的。
我在启动屏幕期间加载会话。请记住,使用此解决方案时,您不应将大对象保留在内存中。
例如我将它用于 Google Analytics 跟踪器初始化、开发模式等
If you're trying to keep some data in memory during the life of your app, maybe you should consider using a singleton pattern. I use it this way.
I load the session during the splash screen. Keep in mind that with this solution you shouldn't keep big objects in memory.
For example I use it for the Google Analytics tracker initialization, development mode, etc