Code Monkey home page Code Monkey logo

Comments (3)

shekohex avatar shekohex commented on May 15, 2024

Hi @WClouds
Could you share a Minimal reproduction of the problem, so I can solve it.
but I just tested the simple loggerMiddleware with the example provided with Nest Router Repo, and it just works fine.

from nest-router.

Metheny80 avatar Metheny80 commented on May 15, 2024

@shekohex I still can't get it to work.
The example in the repo sets up the middleware for the other modules in the main App Module, but in my case I have a few modules, and each sets up its own middleware.

For example, in the main App Module I set up the routes:

// app-module.ts

const routes: Routes = [
  {
    path: '/my',
    module: MyModule,
  },
];

@Module({
  imports: [
    RouterModule.forRoutes(routes)
 ])
export class AppModule { }

However when I do the following in MyModule, the middlewares are not actually being set up (called) for the module's routes:

// my-module.ts
consumer.apply(MyMiddleware).forRoutes(MyController);

// my-controller.ts

@Controller('path')
export class MyController {
  @Get()
  async action(): Promise<any> {
    return;
 }

Calling GET my/path doesn't trigger MyMiddleware.

I tried moving the routes definition to MyModule, but that doesn't work either.
When setting up the middleware like above, should the consumer take into account the prefix set in the AppModule?
Or any other idea why this doesn't work?

from nest-router.

shekohex avatar shekohex commented on May 15, 2024

@Metheny80 please see the README.

but you should instead use this code

​consumer​.​apply​(​someMiddleware​)​.​forRoutes​(​RouterModule​.​resolvePath​(​SomeController​)​)​;

from nest-router.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.