加速器。处理用户会话
钛金SDK版本:1.6.1 iPhone SDK 版本:4.2
我对在 Appcelerator 应用程序 (iPhone) 中处理用户“会话”时的最佳实践有点困惑。就像现在一样,我将用户令牌保存在属性中,然后检查每个页面是否仍然存在(就像在网页上一样)。这不太好,必须有更好的方法。
那么,处理用户登录会话的最佳实践是什么?有人能为我解释一下这个过程吗?步步。
感谢所有的投入!
Titanium SDK version: 1.6.1
iPhone SDK version: 4.2
I am a bit confused about what is the best practice when dealing with user "sessions" in Appcelerator apps (iPhone). Like it is now I save the users token in a property and then check on each page that it still exists (like on a webpage). This does not work so good and there must be a better way.
So, what is the best practise for handling user login sessions? Can someone explain the process for me? Step by step.
Thankful for all input!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我一直在 iOS 上处理身份验证验证,如下所示:
在第一次加载时,在我的 app.js 中,我检查令牌是否有效,如果不是,我会显示登录信息。
我使用类似于下面的方法
对于恢复处理,我在 app.sj 中使用以下内容:
1) 检查我们是否在 iOS 4+ 上
2) 然后添加处理程序
请注意,这假设仅需要在应用程序启动时检查身份验证令牌,或恢复。这应该涵盖大多数情况,但也有一些不适合的情况。
I've been handling authentication verification on iOS as follows:
In my app.js on first load I check that the token is valid, if not I display a login.
I use methods similar to the below
For the resuming handling I use the following in my app.sj:
1) Check if we're on iOS 4+
2) Then add the handler
Please note this assumes checking the authentication token only needs to be done when the App starts, or resumes. This should cover most cases, but there are aways ones were it wont fit.