-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
47 lines (47 loc) · 1.36 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var a = {};
a.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() {
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 a.Router();
router.setup({
'#/list/(.*)/(.*)': function(cate, id) {
console.log('list', cate, id);
},
'#/show/(.*)': function(id) {
console.log('show', id);
},
'#/list/': function(id) {
console.log('show', id);
}
}, function() {
console.log('default router');
});
router.start();
<body onhashchange="router.start()"></body>