Skip to content

Instantly share code, notes, and snippets.

@struCoder
Created July 6, 2016 09:25
Show Gist options
  • Save struCoder/2fefaf5c9b0f86c7d2fff01152fd2694 to your computer and use it in GitHub Desktop.
Save struCoder/2fefaf5c9b0f86c7d2fff01152fd2694 to your computer and use it in GitHub Desktop.
exress管理路由插件
function customRouter(originRouter, prefix) {
let urlArr = [];
let slice = [].slice;
let methods = ['get', 'post', 'delete', 'put'];
function array2ArrayLike(array) {
let arrayLike = {
length: 0
}
for(let i = 0; i < array.length; i++) {
arrayLike[i] = array[i];
arrayLike.length++;
}
return arrayLike;
}
for(let i = 0; i < methods.length; i++) {
let originRouterMethod = originRouter[methods[i]];
originRouter[methods[i]] = function() {
let args = slice.call(arguments);
let nameOrFn = args[1];
let isName = false;
let _args = [args[0]]; // for express router arguments
if(typeof nameOrFn === 'string') {
isName = true;
_args.push(args.slice(2));
}
else {
_args.push(args.slice(1));
}
urlArr.push({
name: isName === true ? args[1] : '',
url: `${(prefix || '') + args[0]}`
});
originRouterMethod.apply(originRouter, array2ArrayLike(_args));
}
}
originRouter._routers = function() {
return urlArr;
}
}
@struCoder
Copy link
Author

效果
qq20160706-0 2x

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