Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

在ios的safari上bfcache失效 #8109

Closed
wen911119 opened this issue Apr 30, 2018 · 5 comments
Closed

在ios的safari上bfcache失效 #8109

wen911119 opened this issue Apr 30, 2018 · 5 comments

Comments

@wen911119
Copy link

Version

2.5.16

Reproduction link

https://github.com/wen911119/vue-bfcache-bug-report

Steps to reproduce

1.git clone
2.npm install
3.npm start
4.用iphone的safari浏览器打开页面
5.滑动一下列表
6.点击跳转到下一页按钮
7.在下一页滑屏返回

What is expected?

在滑屏返回后从bfcache读取页面。页面生命周期不会再次触发,列表也保持在原来位置。

What is actually happening?

onpageshow事件的event.persisted属性为false,说明没有从缓存读取。页面的mounted被重新触发了,列表回到了顶部。


一直用的vue,这个bug我原以为是safari设计的不好。直到今天试了下react,发现react没有这个问题。才意识到这个是vue的问题,作为对比,我也用react创建了个一样的测试例子。https://github.com/wen911119/react-bfcache-test

@sodatea
Copy link
Member

sodatea commented Apr 30, 2018

This is quite an interesting problem. Didn't notice that before.

Translation of this bug report:
When Vue is included in a webpage, back-forward cache no longer works on iOS Safari. That means, when navigating back from any other url, onpageshow event's persisted prop always equals false, and the scroll position does not get preserved.

After some investigation, I found it caused by this line:

const channel = new MessageChannel()

It's the MessageChannel instance created during Vue's initialization process that prevents Safari from caching this page.

If I understand correctly, as of 2.6.x, Vue.nextTick uses microtask by default, and MessageChannel is only used for deferring DOM event callbacks. Maybe we can consider requestAnimationFrame as an alternative now?

@yyx990803
Copy link
Member

requestAnimationFrame has too long a delay and is quite indeterministic. We will likely revert to always using microTasks. Using MessageChannel fixed a few edge cases but caused more problems in the end...

@xilin
Copy link

xilin commented May 8, 2018

@sodatea Could you share the steps you used to locate the bug? It seems that even I assign MessageChannel to an empty implementation, bfcache still not work in our website. After checking this, I still don't know how to narrow the problems.

@xilin
Copy link

xilin commented May 25, 2018

For anyone who may be interested in how to debug the bfcache, you can setup a WebKit project follow the tutorial and debug the canCacheFrame method in PageCache.

In this VUE case, canSuspendActiveDOMObjectsForDocumentSuspension will fail with an activeDOMObject called MessagePort.

@yyx990803
Copy link
Member

Closed via #8450 (will be out in 2.6)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants