asp.net-core – 如何从ASP.NET Core中的Razor View获取Url中的id值

前端之家收集整理的这篇文章主要介绍了asp.net-core – 如何从ASP.NET Core中的Razor View获取Url中的id值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的ASP.NET Core Web应用程序,其页面类似于http:// localhost:5050 / Posts / Create / 3.

在我的Razor View Views / Posts / Create.cshtml中,我如何能够获得值“3”,以便我可以创建类似< a href =“/ Blogs / Details / 3”>«返回的链接博客< / A&GT ;?

到目前为止,使用以下Tag Helper创建了链接,但我不知道要为asp-route-id添加什么:

<a asp-controller="Blogs" asp-action="Details" asp-route-id="" class="btn btn-default btn pull-right">&laquo; Back</a>

我只是使用默认的mvc路由:

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

我知道我可以从模型中获取它(即Model.Blog.BlogId),但我希望使用Views / Post / Create.cshtml中的Request.Query [“id”]之类的东西从Url中获取它.

我试过asp-route-id =“@ Context.Request.Query [”id“].

解决方法

类似于Context.GetRouteData().Values [“id”]; ?

也是http://www.blakepell.com/how-to-get-the-current-route-in-a-view-with-asp-net-5-mvc-6

原文链接:https://www.f2er.com/netcore/247263.html

猜你在找的.NET Core相关文章