upgrade koa-route

This commit is contained in:
Lloyd Brookes
2015-11-22 19:38:08 +00:00
parent 63f329b297
commit f0d36ac89f
4 changed files with 18 additions and 5 deletions

View File

@ -20,7 +20,7 @@ function proxyRequest (route, app) {
changeOrigin: true
})
return function * proxyMiddleware () {
return function proxyMiddleware () {
const next = arguments[arguments.length - 1]
const keys = []
route.re = pathToRegexp(route.from, keys)
@ -29,7 +29,7 @@ function proxyRequest (route, app) {
keys.forEach((key, index) => {
const re = RegExp(`:${key.name}`, 'g')
route.new = route.new
.replace(re, arguments[index] || '')
.replace(re, arguments[index + 1] || '')
})
/* test no keys remain in the new path */