iPhone 应用程序/Web 应用程序会话理论
在 PHP 中,您可以管理服务器上的会话...访问服务器上的任何会话属性以及您的 Web 应用程序。
这如何转化为 iPhone 应用程序?如果我连接到 Web 服务(PHP、ColdFusion),我应该在哪里管理会话?或者在这种情况下它的工作方式有所不同吗?
In PHP, you manage the Session on the server... accessing any of the session properties there on the server along side your web application.
How does this translate to an iPhone App? If I'm connection to web services (PHP, ColdFusion), where should I be managing sessions? Or does it work differently in this scenario?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的 PHP 代码使用 cookie 来跟踪活动会话(而不是会话 id 请求参数),NSURLConnection 会为您处理 cookie,无需任何额外的工作,并且它的工作方式应该与在浏览器中的工作方式相同。
Assuming your PHP code use cookies to track the active session (as opposed to, say, a session id request parameter), NSURLConnection handles cookies for you without any extra work, and it should work the same way it does inside a browser.