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.
我有一个使用 cookie 进行身份验证的 HTML5 Web 应用程序。在 iOS6 中,它从服务器接收 cookie 时遇到一些问题,即出站请求不会像以前一样在标头中包含 cookie。我想出了从http请求中请求会话ID的想法,并将其放入某个位置(可能是NSHTTPCookieStorage?),然后来自UIWebView的所有请求都将包含cookie,然后大部分html5代码都不必更改..
这是正确的方法吗?如果是,如何实施?谢谢。