Vue - HashRoute 实现

2022-01-17  本文已影响0人  人话博客

Vue-Router中有两种链接模式 hashhistory

在表现形式上

在稳定性上

在实现形式上

hash 模式下的路由跳转实现

处理逻辑图:

hash-route.png
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>hash-route</title>
  <script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
</head>

<body>


  <div id="app">

  </div>
</body>

<script>

  window.addEventListener('hashchange', () => {
    // 触发setter,触发视图更新
    vm.url = window.location.hash.slice(1)
  })

  const Foo = {
    template: '<div>foo</div>'
  }
  const Bar = {
    template: '<div>bar</div>'
  }

  const NotFound = { template: '<div>Not Found</div>' }

  const routeTable = {
    foo: Foo,
    bar: Bar
  }

  const vm = new Vue({
    el: '#app',
    data: {
      url: window.location.hash.slice(1),// **********************如果url不是响应式的则无法重新出发render函数.
    },
    // components: {
    //   Foo,
    //   Bar
    // }, // 使用render 函数,不需要注册组件,直接将组件的options传递给h函数即可

    render(h) {
      return h("div", {}, [
        // ************  render 里面依赖的url,url是响应式的. 当url发生改变时,内部的watcher会重新触发render component 函数
        `当前hash值是:#${this.url}`,
        h(routeTable[this.url] || NotFound),
        h('a', { attrs: { href: '#foo' } }, 'foo'),
        '|',
        h('a', { attrs: { href: '#bar' } }, 'bar')
      ])
    }
  })

</script>

</html>


代码,直接复制,粘贴,就可以运行.

上一篇下一篇

猜你喜欢

热点阅读