一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

js实现自定义路由的教程

时间:2017-03-13 编辑:简简单单 来源:一聚教程网

本文实现自定义路由,主要是事件hashchange的使用,然后根据我们的业务需求封装。

首先实现一个router的类,并实例化。

 代码如下复制代码

function_router(config){

 this.config = config ? config : {};

}

_router.prototype = {

 event:function(str,callback){

  varevents = str.split(' ');

  for(variinevents) window.addEventListener(events[i],callback,false);

 },

init:function() {

 this.event('load hashchange',this.refresh.bind(this));

 returnthis;

},

refresh:function() {

 this.currentUrl = location.hash.slice(1) ||'/'

 this.config[this.currentUrl]();

},

route:function(path,callback){

 this.config[path] = callback ||function(){};

}

}

functionrouter (config){

 returnnew_router(config).init();

}

上边唯一需要注意的是,在使用addEventListener的时候,需要注意bind函数的使用,因为我是踩了坑,这才体会到$.proxy()。

上边使用的时候可以使用两种方法进行注册,但第二种是依赖第一种的。

方法一:

 代码如下复制代码

varRouter = router({

 '/':function(){content.style.backgroundColor ='white'},

 '/1':function(){content.style.backgroundColor ='blue'},

 '/2':function(){content.style.backgroundColor ='green'}

})

方法二:

Router.route('/3',function(){ content.style.backgroundColor = 'yellow' })

完整代码:

 代码如下复制代码

 

<html>
 <head>
  <title>title>
 head>
 <body>
  <ul>
   <li><a href="#/1">/1: bluea>li>
   <li><a href="#/2">/2: greena>li>
   <li><a href="#/3">/3: yellowa>li>
  ul>
  <script>
  var content = document.querySelector('body');
  function _router(config){
   this.config = config ? config : {};
  }
  _router.prototype = {
   event:function(str,callback){
    var events = str.split(' ');
    for (var i in events) window.addEventListener(events[i],callback,false);
   },
   init: function() {
    this.event('load hashchange',this.refresh.bind(this));
    return this;
   },
   refresh: function() {
    this.currentUrl = location.hash.slice(1) || '/';
    this.config[this.currentUrl]();
   },
   route: function(path,callback){
    this.config[path] = callback || function(){};
   }
  }
  function router (config){
   return new _router(config).init();
  }
  var Router = router({
   '/' : function(){content.style.backgroundColor = 'white';},
   '/1': function(){content.style.backgroundColor = 'blue';},
   '/2': function(){content.style.backgroundColor = 'green';}
  })
  Router.route('/3',function(){
   content.style.backgroundColor = 'yellow';
  })
  script>
 body>
html>
<script>
script>

热门栏目