在使用 Vue 或者 Angular 的时候,框架提供了路由守卫功能,用来在进入某个路有前进行一些校验工作,如果校验失败,就跳转到 404 或者登陆页面,比如 Vue 中的 beforeEnter 函数: ... router.beforeEach(async(to, from, next) => { const toPath = to.path; const fromPath = from.path; }) ... 在之前的版本中,React Router 也提供了类似的 onEnter 钩子…