How to apply middleware to all routes?

1.9k Views Asked by At

How I want to apply middleware to all paths in koa-route, e.g.

router1.use( (ctx) => {
    console.error("hello 0 ...");
    console.log(ctx.url);
}
router1.all( (ctx) => {
    console.error("hello 0 ...");
    console.log(ctx.url);
}

It comes back like this path += str.slice(index, offset) ^

TypeError: str.slice is not a function Any hints ? Thanks!

1

There are 1 best solutions below

0
On

I hope this is it,

router1.use(/(.*)/, (ctx) => {
    console.error("hello 0 ...");
    console.log(ctx.url);
}