图片url不变,服务端图片更新,客户端同步如何解决

突然看到这两篇文章SDWebImage 处理url链接中图片更新问题,URL不变,服务端图片更新,客户端同步更新问题。想起来曾经面试问到过的问题,到时候回答时候说给每个图片链接加个标识,服务端改变图片的时候改变标识,清除前端缓存,重新下载图片。但是这明显不合理,图片会改变很多次,标识的话那的多少标识?看了这两篇文章才知道HTTP协议本身就有对这个问题的解决机制。
平时我们为了节约流量以及提升用户体验,从后端请求的图片都会在手机端进行缓存,这是毫无质疑的。但是当图片的URL不发生改变,服务端单方面改变该URL对应的图片资源时,手机端如何知晓及时再次向服务端请求最新图片,而不是一直从缓存中获取旧图片。
首先我们要知道http请求由三部分组成,分别是:请求行、消息报头、请求正文。消息报头就是我们日常请求的header了
常用的消息报头有很多,其中有一个叫Last-Modified
Last-Modified实体报头域用于指示资源的最后修改日期和时间。通过这个标识即可知晓服务端修改了图片资源。

SDWebImage在下载图片前会将上次获取的Etag、Last-Modified和本次需要下载的图片的Etag、Last-Modified比对,若一致不会下载,若不一致说明有更新
Etag由服务器端生成,客户端通过If-Match或者说If-None-Match这个条件判断请求来验证资源是否修改。常见的是使用If-None-Match.请求一个文件的流程可能如下:

====第一次请求===
1.客户端发起 HTTP GET 请求一个文件;
2.服务器处理请求,返回文件内容和一堆Header,当然包括Etag(例如"2e681a-6-5d044840")(假设服务器支持Etag生成和已经开启了Etag).状态码200
====第二次请求===
1.客户端发起 HTTP GET 请求一个文件,注意这个时候客户端同时发送一个If-None-Match头,这个头的内容就是第一次请求时服务器返回的Etag:2e681a-6-5d044840
2.服务器判断发送过来的Etag和计算出来的Etag匹配,因此If-None-Match为False,不返回200,返回304,客户端继续使用。

大体流程就是这个。
然后我们分两步去做

使用SDWebImage时,设置下载选项options:为SDWebImageRefreshCached
代码如下:
[imageview sd_setImageWithURL:[NSURL URLWithString:imageUrlString] placeholderImage:[UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:kDefaultAvatarIcon ofType:kPngName]] options:SDWebImageRefreshCached completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) { }];

2.需要在 AppDelegate的里面-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 这个方法内加入以下代码。

//获取SDWebImage的下载对象,所有图片的下载都是此对象完成的 SDWebImageDownloader *imgDownloader=SDWebImageManager.sharedManager.imageDownloader;
imgDownloader.headersFilter  = ^NSDictionary *(NSURL *url, NSDictionary *headers) {
//下载图片成功后的回调
NSFileManager *fm = [[NSFileManager alloc] init];
        NSString *imgKey = [SDWebImageManager.sharedManager cacheKeyForURL:url];
        NSString *imgPath = [SDWebImageManager.sharedManager.imageCache defaultCachePathForKey:imgKey];
        //获取当前路径图片服务端返回的请求头相关信息
        NSDictionary *fileAttr = [fm attributesOfItemAtPath:imgPath error:nil];
        NSMutableDictionary *mutableHeaders = [headers mutableCopy];
        NSDate *lastModifiedDate = nil;
        //大于0则表示请求图片成功
        if (fileAttr.count > 0) {
            if (fileAttr.count > 0) {
                //如果请求成功,则手机端取出服务端Last-Modified信息
                lastModifiedDate = (NSDate *)fileAttr[NSFileModificationDate];
            }
        }
        //格式化Last-Modified
        NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
        formatter.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
        formatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
        formatter.dateFormat = @"EEE, dd MMM yyyy HH:mm:ss z";
        NSString *lastModifiedStr = [formatter stringFromDate:lastModifiedDate];
        
        lastModifiedStr = lastModifiedStr.length > 0 ? lastModifiedStr : @"";
        
        //设置SDWebImage的请求头If-Modified-Since
        [mutableHeaders setValue:lastModifiedStr forKey:@"If-Modified-Since"];
        return mutableHeaders;
    };

其他的交给SDWebImage去做了,SDWebImage有一段代码如下:

-  (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
//304 Not Modified is an exceptional one
if (![response respondsToSelector:@selector(statusCode)] || ([((NSHTTPURLResponse *)response) statusCode] < 400 && [((NSHTTPURLResponse *)response) statusCode] != 304)) {
NSInteger expected = response.expectedContentLength > 0 ? (NSInteger)response.expectedContentLength : 0;
self.expectedSize = expected;
if (self.progressBlock) {
self.progressBlock(0, expected);
}
self.imageData = [[NSMutableData alloc] initWithCapacity:expected];
self.response = response;
dispatch_async(dispatch_get_main_queue(), ^{
[[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadReceiveResponseNotification object:self];
 });
} else {
 NSUInteger code = [((NSHTTPURLResponse *)response) statusCode];
//This is the case when server returns '304 Not Modified'. It means that remote image is not changed.
//In case of 304 we need just cancel the operation and return cached image from the cache.
if (code == 304) {
      [self cancelInternal];
   } else {
[self.connection cancel];
}
dispatch_async(dispatch_get_main_queue(), ^{
  [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadStopNotification object:self];
  });
if (self.completedBlock) {
 self.completedBlock(nil, nil, [NSError errorWithDomain:NSURLErrorDomain code:[((NSHTTPURLResponse *)response) statusCode] userInfo:nil], YES);
 }
CFRunLoopStop(CFRunLoopGetCurrent());
 [self done];
}}

其实这种情况在开发中还是很少见的,一般都是后端改变的图片的资源,图片的URL也会去该改变,但是遇到问题了就得解决问题,这是开发者必备的。希望多大家有帮助!
参考:
SDWebImage 处理url链接中图片更新问题
URL不变,服务端图片更新,客户端同步更新问题

你可能感兴趣的:(图片url不变,服务端图片更新,客户端同步如何解决)