swagger-egg icon indicating copy to clipboard operation
swagger-egg copied to clipboard

解析不出 controller action

Open kerryChen95 opened this issue 2 years ago • 1 comments

问题表现

解析不出 controller action

复现数据示例

// app/router.ts
router
  .get(
    'path/to/foo',
    middlewareBar,
    // 注意末尾有逗号
    app.controller.foo.action,
  )

根本原因

34, 35行解析得太理想化了,建议在单元测试中补充边界case。

image

kerryChen95 avatar Apr 18 '22 08:04 kerryChen95

问题表现

解析不出 controller action

复现数据示例

// app/router.ts
router
  .get(
    'path/to/foo',
    middlewareBar,
    // 注意末尾有逗号
    app.controller.foo.action,
  )

根本原因

34, 35行解析得太理想化了,建议在单元测试中补充边界case。

image

👍🏻,欢迎提PR哦!

JsonMa avatar Apr 18 '22 08:04 JsonMa