我有一个简单的ASP.NET Core Web应用程序,其页面类似于http:// localhost:5050 / Posts / Create / 3.
在我的Razor View Views / Posts / Create.cshtml中,我如何能够获得值“3”,以便我可以创建类似< a href =“/ Blogs / Details / 3”>«返回的链接博客< / A> ;?
到目前为止,使用以下Tag Helper创建了链接,但我不知道要为asp-route-id添加什么:
<a asp-controller="Blogs" asp-action="Details" asp-route-id="" class="btn btn-default btn pull-right">« 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