JS是如何实现前端路由的 JS实现原生路由

2020/3/27 5:01:21

本文主要是介绍JS是如何实现前端路由的 JS实现原生路由,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

路由就是根据不同的 url 地址展示不同的内容或页面,早期路由的概念是在后端出现的,通过服务器端渲染后返回页面,随着页面越来越复杂,服务器端压力越来越大。后来ajax异步刷新的出现使得前端也可以对url进行管理,此时,前端路由就出现了。

单页面就是有前端路由来实现的,也就是说网站只有一个页面,点击导航会显示不同的内容,对应的url也在发生改变。在这个过程中,js会实时检测url的变化,从而改变显示的内容。

GIF 2020-3-26 16-28-06.gif

全过程只改变内容,不刷新页面。

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>前端路由测试</title>
    <script src="https://www.jq22.com/jquery/jquery-3.3.1.js"></script>
 
    <style>
           *{
               margin:0;
               padding: 0;
           }

           .content{
               width: 500px;
               height: 300px;
               margin-top: 30px;
               margin:20px auto 0;
           }

           #click_btn{
               width: 500px;
               height: 50px;
               margin:100px auto 0;
           }

           #click_btn a{
               display: block;
               background: #333;
               color: #fff;
               text-decoration: none;
               line-height: 50px;
               text-align: center;
               float: left;
               margin-right: 15px;
               padding: 0px 15px;
           }

           #click_btn a:hover{
               background: #666;
           }
    </style>
 
</head>
<body>
<div id="click_btn">
    <a href="#/one">第一个页面</a>
    <a href="#/two">第二个页面</a>
    <a href="#/three">第三个页面</a>
</div>

<div class="content"></div>
 
<script src="router.js"></script>
<script src="test.js"></script>
 
</body>
</html>

router.js

//构造函数
function Router() {
    this.routes = {};
    this.currentUrl = '';
}
Router.prototype.route = function(path, callback) {
    this.routes[path] = callback || function(){};//给不同的hash设置不同的回调函数
};
Router.prototype.refresh = function() {
    console.log(location.hash.slice(1));//获取到相应的hash值
    this.currentUrl = location.hash.slice(1) || '/';//如果存在hash值则获取到,否则设置hash值为/
    // console.log(this.currentUrl);
    if(this.currentUrl&&this.currentUrl!='/'){
        this.routes[this.currentUrl]();//根据当前的hash值来调用相对应的回调函数
    }
 
};
Router.prototype.init = function() {
    window.addEventListener('load', this.refresh.bind(this), false);
    window.addEventListener('hashchange', this.refresh.bind(this), false);
}
//给window对象挂载属性
window.Router = new Router();
window.Router.init();

test.js

Router.route('/one', function () {
    $(".content").html("<p>路由就是根据不同的 url 地址展示不同的内容或页面,早期路由的概念是在后端出现的,通过服务器端渲染后返回页面,随着页面越来越复杂,服务器端压力越来越大。后来ajax异步刷新的出现使得前端也可以对url进行管理,此时,前端路由就出现了。</p>");
});
Router.route('/two', function () {
    $(".content").html("<h3>单页面就是有前端路由来实现的,也就是说网站只有一个页面,点击导航会显示不同的内容,对应的url也在发生改变。在这个过程中,js会实时检测url的变化,从而改变显示的内容。</h3>");
});
Router.route('/three', function () {
    $(".content").html("<img src='https://upload-images.jianshu.io/upload_images/12890819-f8665293cc8d0dcf.png?imageMogr2/auto-orient/strip|imageView2/2/w/1200/format/webp' width='500'/>");
});

原文:JS是如何实现前端路由的



这篇关于JS是如何实现前端路由的 JS实现原生路由的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程