gpt4 book ai didi

asp.net-core-mvc - razor 页面 View 模型类中的 Url.Action 替代

转载 作者:行者123 更新时间:2023-12-01 11:14:49 26 4
gpt4 key购买 nike

可以用什么来获取项目的这个路径下的页面的URL<website>/Pages/Account/Logout.cshtml
这是使用 View 模型 Razor 页面而不是 mvc Controller /操作

当我使用 Url.Action("/Account/Logout", new { logoutId = ogoutId });它说无法解决操作 /Account/Logout

最佳答案

在 Razor Pages 中,您可以使用 @Url.Page。

<a href="@Url.Page("/Account/Logout",new { logoutId = 1 })">Logout</a>

或使用 asp-page直接看更多用法 here .
<a asp-page="/Account/Logout" asp-route-logoutId ="1">Logout</a>

关于asp.net-core-mvc - razor 页面 View 模型类中的 Url.Action 替代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53733351/

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