gpt4 book ai didi

c# - ASP.net 核心路由/prod/1/review/1

转载 作者:行者123 更新时间:2023-11-30 14:25:32 24 4
gpt4 key购买 nike

我阅读了很多关于 asp.net core 中的路由的博客和可用问题,但没有发现任何人提到类似的内容。

在某些情况下,我希望我的路线看起来像:

/products/1/reviews/1

产品和评论后跟它们的 id 或更多嵌套路线,例如:

/products/1/images/1/comments/1

有没有办法像默认的那样为它定义一个模板路由:

app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});

最佳答案

你可以使用基于属性的路由

[Route("[conroller]/[action]")]
public class ImagesController
{
[HttpGet("/[controller]/{productId:int}/images/{imageId:int}/comments/{commentId:int}")]
public IActionResult GetComments(int productId, int imageId, int commentId)
{
}
}

关于c# - ASP.net 核心路由/prod/1/review/1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38046672/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com