Skip to content

Instantly share code, notes, and snippets.

@lgh06
Created October 29, 2015 03:51
Show Gist options
  • Save lgh06/d410c328a537e7c24212 to your computer and use it in GitHub Desktop.
Save lgh06/d410c328a537e7c24212 to your computer and use it in GitHub Desktop.
一个简单的router js
var wawa = {};
wawa.Router = function(){
function Router(){
}
Router.prototype.setup = function(routemap, defaultFunc){
var that = this, rule, func;
this.routemap = [];
this.defaultFunc = defaultFunc;
for (var rule in routemap) {
if (!routemap.hasOwnProperty(rule)) continue;
that.routemap.push({
rule: new RegExp(rule, 'i'),
func: routemap[rule]
});
}
};
Router.prototype.start = function(){
console.log(window.location.hash);
var hash = location.hash, route, matchResult;
for (var routeIndex in this.routemap){
route = this.routemap[routeIndex];
matchResult = hash.match(route.rule);
if (matchResult){
route.func.apply(window, matchResult.slice(1));
return;
}
}
this.defaultFunc();
};
return Router;
}();
var router = new wawa.Router();
router.setup({
'#/list/(.*)/(.*)': function(cate, id){
console.log('list', cate, id);
},
'#/show/(.*)': function(id){
console.log('show', id);
}
}, function(){
console.log('default router');
});
router.start();
//该代码片段来自于: http://www.sharejs.com/codes/javascript/5254
@lgh06
Copy link
Author

lgh06 commented Oct 29, 2015

然而并没有添加hashchange事件……

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment