Created
July 6, 2016 09:25
-
-
Save struCoder/2fefaf5c9b0f86c7d2fff01152fd2694 to your computer and use it in GitHub Desktop.
exress管理路由插件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
效果
