在控制器里面重载一个方法,参数列表不同比如 public int A(int b) { return b; } public int A() { return 1; } swagger 只能显示一个方法名,怎么样才能让两个都显示
可以手动加下路由 [HttpPost("a{b}")]