router.scrollBehavior.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. export default function(to, from, savedPosition) {
  2. // if the returned position is falsy or an empty object,
  3. // will retain current scroll position.
  4. let position = false;
  5. // 自定义行为
  6. const reg = /\/category/;
  7. if (reg.test(to.path) && reg.test(from.path) || to.path !== from.path) {
  8. // 在5种分类页间跳转 或者 同组件路由跳转时, 重置滚动距离
  9. position = { x: 0, y: 0 };
  10. } else if (savedPosition) {
  11. position = savedPosition;
  12. }
  13. if (to.hash) {
  14. let hash = to.hash;
  15. // CSS.escape() is not supported with IE and Edge.
  16. if (
  17. typeof window.CSS !== 'undefined' &&
  18. typeof window.CSS.escape !== 'undefined')
  19. {
  20. hash = '#' + window.CSS.escape(hash.substr(1));
  21. }
  22. try {
  23. if (document.querySelector(hash)) {
  24. // scroll to anchor by returning the selector
  25. position = { selector: hash };
  26. } else {
  27. // 部分情况下, 点击带hash的路由链接跳转会没法正确识别到hash, 需要用这种方式处理.
  28. return new Promise((resolve) => {
  29. window.$nuxt.$once('triggerScroll', () => {
  30. position = { selector: hash };
  31. resolve(position);
  32. });
  33. });
  34. }
  35. } catch (e) {
  36. console.warn(
  37. 'Failed to save scroll position. Please add CSS.escape() polyfill (https://github.com/mathiasbynens/CSS.escape).'
  38. );
  39. }
  40. return position;
  41. } else {
  42. return position;
  43. }
  44. }