zoukankan      html  css  js  c++  java
  • UIWebView的缓存策略,清除cookie

    缓存策略 NSURLRequestCachePolicy

    NSURLRequestUseProtocolCachePolicy
    缓存策略定义在 web 协议实现中,用于请求特定的URL。是默认的URL缓存策略

    Specifies that the caching logic defined in the protocol implementation, if any, is used for a particular URL load request. This is the default policy for URL load requests.

    NSURLRequestReloadIgnoringLocalCacheData

    从服务端获取数据,忽略本地缓存

    Specifies that the data for the URL load should be loaded from the originating source. No existing cache data should be used to satisfy a URL load request.

    NSURLRequestReloadIgnoringLocalAndRemoteCacheData

    不仅忽略本地的缓存数据,还忽略中间网络媒介(如代理服务器)忽略缓存。直接从最原始的服务器拿取

    Specifies that not only should the local cache data be ignored, but that proxies and other intermediates should be instructed to disregard their caches so far as the protocol allows.

    NSURLRequestReloadIgnoringCacheData

    被NSURLRequestReloadIgnoringLocalCacheData替换了

    Replaced by NSURLRequestReloadIgnoringLocalCacheData.

    NSURLRequestReturnCacheDataElseLoad

    已经存在的缓存数据用于请求返回,不管它的过期日期和已经存在了多久。如果没有请求对应的缓存数据,从数据源读取

    Specifies that the existing cached data should be used to satisfy the request, regardless of its age or expiration date. If there is no existing data in the cache corresponding the request, the data is loaded from the originating source.

    NSURLRequestReturnCacheDataDontLoad

    已经存在的缓存数据用于请求返回,不管它的过期日期和已经存在了多久。如果没有请求对应的缓存数据,不要去数据源读取,该请求被设置为失败,这种情况多用于离线模式

    Specifies that the existing cache data should be used to satisfy a request, regardless of its age or expiration date. If there is no existing data in the cache corresponding to a URL load request, no attempt is made to load the data from the originating source, and the load is considered to have failed. This constant specifies a behavior that is similar to an “offline” mode.

    NSURLRequestReloadRevalidatingCacheData

    已经存在的缓存数据先去数据源验证有效性,如果无效,将从数据源获取

    Specifies that the existing cache data may be used provided the origin source confirms its validity, otherwise the URL is loaded from the origin source.

    NSURLRequestUseProtocolCachePolicy 和 NSURLRequestReloadRevalidatingCacheData 区别

    个人意见,仅供参考,如有错误,请指出来,这对我很重要,谢谢

    NSURLRequestReloadRevalidatingCacheData 是一定要和原始的数据源验证 cache 是否有效。
    而NSURLRequestUseProtocolCachePolicy 是根据 web 的协议来控制缓存,服务端返回数据的 head 有相关的信息。它可能会返回中间网络媒介(如代理服务器中的数据)


    针对缓存策略做一下本地测试,这是非常有必要的

    1. NSURL *webUrl = [NSURL URLWithString:@"http://localhost/test.txt"];       
    2. NSURLRequest *request =[NSURLRequest requestWithURL:webUrl cachePolicy:NSURLRequestReloadRevalidatingCacheData timeoutInterval:60];       
    3. [self.mainWebView loadRequest:request];  


    这里使用NSURLRequestReloadRevalidatingCacheData, 返回cache数据一定要先验证数据有效。

    • 使用建立两个同名的test.txt, 先放一个到服务器。

                    

    • 然后直接修改服务器的 test.txt 文件,添加字段" ----------------------------- " 保存,可以看到马上生效了。

               

    • 用另外一个test.txt替换掉服务器中当前的test.txt,也马上生效了

                  

    通过以上简单的验证可以得知NSURLRequestReloadRevalidatingCacheData 这种模式对存储在服务器中的文件的修改和替换是敏感的

    我这里使用的是mac系统自带的 appache 服务器
    文件目录是在  /Library/WebServer/Documents 
    启动Apache的方法是在命令行输入 sudo apachectl start
    然后输入密码,输入过程命令行是无显示的,不用管,输入之后敲回车键。会有提示:服务器已经启动。

    根据文档的信息,initwithURL 使用的默认缓存机制NSURLRequestUseProtocolCachePolicy,并且是60s的请求时间,超过时间会请求失败

    相关文件
    清除cookie

      1. NSHTTPCookie *cookie;              
      2.   
      3. NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];              
      4.   
      5. for (cookie in [storage cookies]) {  
      6.   
      7.                 [storage deleteCookie:cookie];             
      8.   
      9. }  
  • 相关阅读:
    mybatis sql xml 字符逃脱
    npp 文本编辑器 开源
    保存分区表时出现错误(0000000001)函数不正确
    常见笔记本进入bios方法
    chrome 字体太浅,如何设置
    Python基础概念
    xp下复制ZIP文件极慢,右键点击也极慢(ZIP文件越大越慢) 解决方法
    联想V460 装XP。记录
    极度诡异的内存问题,这几天遇到。特记录
    时间注意事项
  • 原文地址:https://www.cnblogs.com/worldtraveler/p/4739652.html
Copyright © 2011-2022 走看看