Skip to content

Commit bc13548

Browse files
authoredApr 2, 2023
fix the two routes with the same path conflicts (#160)
1 parent ae98680 commit bc13548

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed
 

‎lib/router.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,8 @@ Router.prototype.routes = Router.prototype.middleware = function () {
384384
return next();
385385
}
386386

387-
const path = router.opts.routerPath || ctx.routerPath || ctx.path;
387+
const path =
388+
router.opts.routerPath || ctx.newRouterPath || ctx.path || ctx.routerPath;
388389
const matched = router.match(path, ctx.method);
389390
let layerChain;
390391

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@koa/router",
33
"description": "Router middleware for koa. Maintained by Forward Email and Lad.",
4-
"version": "12.0.0",
4+
"version": "12.1.0",
55
"author": "Alex Mingoia <talk@alexmingoia.com>",
66
"bugs": {
77
"url": "https://github.com/koajs/router/issues",

‎test/lib/router.js

+37-1
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ describe('Router', function () {
918918
app.use(function (ctx, next) {
919919
// bind helloworld.example.com/users => example.com/helloworld/users
920920
const appname = ctx.request.hostname.split('.', 1)[0];
921-
ctx.routerPath = '/' + appname + ctx.path;
921+
ctx.newRouterPath = '/' + appname + ctx.path;
922922
return next();
923923
});
924924
app.use(router.routes());
@@ -957,6 +957,42 @@ describe('Router', function () {
957957
});
958958
});
959959

960+
it('two routes with the same path', function (done) {
961+
const app = new Koa();
962+
const router1 = new Router();
963+
const router2 = new Router();
964+
router1.get('/echo/:saying', function (ctx, next) {
965+
try {
966+
expect(ctx.params.saying).eql('helloWorld');
967+
expect(ctx.request.params.saying).eql('helloWorld');
968+
next();
969+
} catch (err) {
970+
ctx.status = 500;
971+
ctx.body = err.message;
972+
}
973+
});
974+
router2.get('/echo/:saying', function (ctx) {
975+
try {
976+
expect(ctx.params.saying).eql('helloWorld');
977+
expect(ctx.request.params.saying).eql('helloWorld');
978+
ctx.body = { echo: ctx.params.saying };
979+
} catch (err) {
980+
ctx.status = 500;
981+
ctx.body = err.message;
982+
}
983+
});
984+
app.use(router1.routes());
985+
app.use(router2.routes());
986+
request(http.createServer(app.callback()))
987+
.get('/echo/helloWorld')
988+
.expect(200)
989+
.end(function (err, res) {
990+
if (err) return done(err);
991+
expect(res.body).to.eql({ echo: 'helloWorld' });
992+
done();
993+
});
994+
});
995+
960996
it('parameter added to request in ctx with sub router', function (done) {
961997
const app = new Koa();
962998
const router = new Router();

0 commit comments

Comments
 (0)