如果服务器端直接将图片改变了,而url没有变,怎么办?
当采用GET方法请求的报文中含有If-Modified-Since首部时,服务器端允许请求访问资源,但因为资源未Modified,服务器端直接返回304 Not Modified,表示服务器端资源未改变,可直接使用客户端未过期的缓存。
由此,我们可以将请求图片的最近修改时间保存在If-Modified-Since中,当再次请求此图片时,若资源未改变,返回304,表示我们可以继续使用缓存中的这张图片;若资源改变了,我们需要再一次下载此图片。
[imageView sd_setImageWithURL: url placeholderImage:nil options:SDWebImageRefreshCached];
设置 SDWebImageOptions 为 SDWebImageRefreshCached 即使图片已经缓存了,在加载时,还是向服务器发请求验证其资源是否修改。
第一次下载图片并且缓存时,必须保存其最近修改时间,便于下次判断是否需要重新下载:
SDWebImageDownloader *imageDownloader = [[SDWebImageManager sharedManager] imageDownloader];
//设置downloader 的头部过滤器
imageDownloader.headersFilter = ^NSDictionary *(NSURL *url, NSDictionary *headers) {
NSFileManager *fm = [[NSFileManager alloc] init];
NSString *imgKey = [[SDWebImageManager sharedManager] cacheKeyForURL:url];
NSString *imgPath = [[SDWebImageManager sharedManager].imageCache defaultCachePathForKey:imgKey];
//fileAttr 为图片缓存时的一些信息
NSDictionary *fileAttr = [fm attributesOfItemAtPath:imgPath error:nil];
NSMutableDictionary *mutableHeaders = [headers mutableCopy];
NSDate *lastModifiedDate = nil;
if (fileAttr.count > 0) {
//若fileAttr不为空,取出最近修改时间
lastModifiedDate = (NSDate *)fileAttr[NSFileModificationDate];
}
//将时间格式化
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
formatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
formatter.dateFormat = @"EEE, dd MM yyyy HH:mm:ss z";
NSString *lastModifiedStr = [formatter stringFromDate:lastModifiedDate];
lastModifiedStr = lastModifiedStr.length > 0 ? lastModifiedStr : @"";
//存入首部
[mutableHeaders setValue:lastModifiedStr forKey:@"If-Modified-Since"];
return mutableHeaders;
};
这样,发出的http请求将带有If-Modified-Since首部,如图:
返回的响应状态码为304,表示可以用客户端缓存的图片,资源并未修改,如图: