最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - NestJs ParseEnumPipe can't be resolve - Stack Overflow

programmeradmin1浏览0评论

I am using the NestJs framework (love it by the way) and I want to check the ining data so it conforms with an Enum in Typscript. So I have the following:

enum ProductAction {
  PURCHASE = 'PURCHASE',
}

@Patch('products/:uuid')
async patchProducts(
    @Param('uuid', ParseUUIDPipe) uuid: string,
    @Body('action', ParseEnumPipe) action: ProductAction,
  ) {

    switch(action) {

    ... code 
  }

The weird thing is that when I run this code, the first pipe gets piled

2022-07-21 16:53:51 [error] [ExceptionHandler] Nest can't resolve dependencies of the ParseEnumPipe (?, Object). Please make sure that the argument Object at index [0] is available in the FriendsModule context.

What I am doing wrong?

I am using the NestJs framework (love it by the way) and I want to check the ining data so it conforms with an Enum in Typscript. So I have the following:

enum ProductAction {
  PURCHASE = 'PURCHASE',
}

@Patch('products/:uuid')
async patchProducts(
    @Param('uuid', ParseUUIDPipe) uuid: string,
    @Body('action', ParseEnumPipe) action: ProductAction,
  ) {

    switch(action) {

    ... code 
  }

The weird thing is that when I run this code, the first pipe gets piled

2022-07-21 16:53:51 [error] [ExceptionHandler] Nest can't resolve dependencies of the ParseEnumPipe (?, Object). Please make sure that the argument Object at index [0] is available in the FriendsModule context.

What I am doing wrong?

Share Improve this question asked Jul 21, 2022 at 14:01 Mike MMike M 5,1426 gold badges42 silver badges62 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 15

You should use @Body('action', new ParseEnumPipe(ProductAction)) action: ProductAction because enums aren't directly reflected for Nest to read the metadata of, and because Nest is otherwise trying to figure out how to inject Object when it really should be injecting the enum.

发布评论

评论列表(0)

  1. 暂无评论