您的位置:首页 > 其它

[PWA] 0. Introduce to Offline First

2016-05-15 16:35 267 查看
Why offline first?

Imagin you are visiting a website, it is fine if wifi connection is good. It might be also "fine" if show you "Your don't have internet connection", so you give up. The worse case is you have really poor wifi connection and the page is trying to loading, but nothing comes up. So you just wait and wait...

Noramlly online first soultion is trying to connect network (server) first. If cannot connect then fetch data from cache. This is not so good, because you still need to wait and wait util network fallback then you will get cache data. How about we do:

When page loading, send two request.

One request going to cache to fetch as much as we can to display on the screen.

Another reqest going to the reall server, get data update.

If we are in really poor wifi connection, at least we get something, we see something, better than nothing.

If the connection is good, the cache data will be replaced with real data and interface update immediately. This will provide a better user experence.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: