实现简单路由

发布于 2023-05-04 20:25:27 字数 1520 浏览 54 评论 0

上面实现了简易的 hash 路由, 也可以使用 history 的 pushState 和监听 popState 事件即可

  1. https://developer.mozilla.org/zh-CN/docs/Web/API/Window/popstate_event
  2. https://developer.mozilla.org/zh-CN/docs/Web/API/History/pushState
const A = {
    render() {
        return 'AAA'
    }
}

class Router {
    routes = new Map()
    route = {
        path: '/'
    }
    routeView = null
    constructor(el) {
        this.routeView = el
        this.init()
    }

    init() {
        window.addEventListener('hashchange', () => {
            this.routeTo()
        })
        window.addEventListener('load', () => {
            this.routeTo()
        })
    }

    push(path) {
        location.hash = `#${path}`
    }


    add(routeName, component) {
        this.routes.set(routeName, component)
    }

    routeTo() {
        this.route.path = location.hash.slice(1) || '/'

        const component = this.routes.get(this.route.path)
        console.log({component})
        const app = this.routeView
        if (component) {
            app.innerHTML = component.render()
        } else {
            app.innerHTML = `<h1>404 Not Found</h1>`;
        }
    }
}

const router = new Router(document.querySelector('body'))
router.add('/a', A)


router.push('/a')
console.log(router.route)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

时光无声

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

qq_eQNo9e

文章 0 评论 0

内心旳酸楚

文章 0 评论 0

mb_BlPo2I8v

文章 0 评论 0

alipaysp_ZRaVhH1Dn

文章 0 评论 0

alipaysp_VP2a8Q4rgx

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文