具有可选参数路由规则的 .Net 核心 MVC 控制器打破空值
.Net core MVC Controller with optional parameter routing rules breaking with null values
在 .net 核心应用程序上启动,启动设置如下所示
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
有一个自定义控制器,控制器的定义如下
[Route("Purchase")]
public class InvoiceController : Controller
{
[HttpGet("{identifier}/{itemsCount}/overview")]
public async Task<IActionResult> GetInvoiceOverview(string identifier,int itemsCount)
{
A call to url like this //https://localhost:44320/invoice/20210209-0035/20/overview/
is working correctly and getting param values as
identifier=20210209-0035
itemsCount=20
}
}
我正在尝试向此列表中添加一个可选参数,新的操作定义现在是这样的
[HttpGet("{identifier}/{itemsCount}/{pagesize?}/overview")]
public async Task<IActionResult> GetInvoiceOverview(string identifier,int itemsCount,string pagesize=null)
{
}
这条路由规则似乎适用于 pagesize 的所有非空值,如下所示
https://localhost:44320/invoice/20210209-0035/20/11/overview/ 也在工作并获取参数如下
identifier=20210209-0035
itemsCount=20
pagesize=11
但是当尝试使用 pagesize 的空值进行调用时,应用程序返回 404 Page Not found
这个 url : https://localhost:44320/invoice/20210209-0035/20/overview/ => 404
这背后的原因可能是什么?
你可以尝试使用2属性路由
[HttpGet("~/invoice/{identifier}/{itemsCount}/overview")]
[HttpGet("~/invoice/{identifier}/{itemsCount}/{pagesize:int}/overview")] //:int is optional
public async Task<IActionResult> GetInvoiceOverview(string identifier, int itemsCount, int? pagesize)
{
....
}
在 .net 核心应用程序上启动,启动设置如下所示
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
有一个自定义控制器,控制器的定义如下
[Route("Purchase")]
public class InvoiceController : Controller
{
[HttpGet("{identifier}/{itemsCount}/overview")]
public async Task<IActionResult> GetInvoiceOverview(string identifier,int itemsCount)
{
A call to url like this //https://localhost:44320/invoice/20210209-0035/20/overview/
is working correctly and getting param values as
identifier=20210209-0035
itemsCount=20
}
}
我正在尝试向此列表中添加一个可选参数,新的操作定义现在是这样的
[HttpGet("{identifier}/{itemsCount}/{pagesize?}/overview")]
public async Task<IActionResult> GetInvoiceOverview(string identifier,int itemsCount,string pagesize=null)
{
}
这条路由规则似乎适用于 pagesize 的所有非空值,如下所示 https://localhost:44320/invoice/20210209-0035/20/11/overview/ 也在工作并获取参数如下
identifier=20210209-0035
itemsCount=20
pagesize=11
但是当尝试使用 pagesize 的空值进行调用时,应用程序返回 404 Page Not found
这个 url : https://localhost:44320/invoice/20210209-0035/20/overview/ => 404
这背后的原因可能是什么?
你可以尝试使用2属性路由
[HttpGet("~/invoice/{identifier}/{itemsCount}/overview")]
[HttpGet("~/invoice/{identifier}/{itemsCount}/{pagesize:int}/overview")] //:int is optional
public async Task<IActionResult> GetInvoiceOverview(string identifier, int itemsCount, int? pagesize)
{
....
}