jeff5665 / route

只实现了*和: 的简单路由模块

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

####实现了*和:的路由模块

var config={
	'/home/:cat/:id':function(param){
		console.log(param.cat);//s001
		console.log(param.id);//g001
	},
	'/home/:cat/*:':function(param){
		console.log(param.cat);//s001
	}
}

RouteModule(config,'/home/s001/g001');

About

只实现了*和: 的简单路由模块


Languages

Language:JavaScript 100.0%